1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-22 06:22:58 +02:00

Doxygen, Clips and Labels

- Classes renamed and better doxygenated
- GetInfo: Type=Clips added
- GetInfo: Type=Labels added.
This commit is contained in:
James Crook
2018-02-08 19:08:50 +00:00
committed by Paul Licameli
parent ca5dac59ff
commit b1b1a362ed
23 changed files with 171 additions and 85 deletions

View File

@@ -27,7 +27,7 @@
class AudacityApp;
class CommandContext;
class CommandOutputTarget;
class CommandOutputTargets;
// Abstract base class for command interface.
class OldStyleCommand /* not final */
@@ -67,7 +67,7 @@ public:
class ApplyAndSendResponse final : public DecoratedCommand
{
public:
ApplyAndSendResponse(const OldStyleCommandPointer &cmd, std::unique_ptr<CommandOutputTarget> &target);
ApplyAndSendResponse(const OldStyleCommandPointer &cmd, std::unique_ptr<CommandOutputTargets> &target);
bool Apply() override;
bool Apply(const CommandContext &context) override;// Error to use this.
std::unique_ptr<CommandContext> mCtx;