mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-08 16:11:14 +02:00
// Indentation settings for Vim and Emacs etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
/**********************************************************************
|
|
|
|
Audacity - A Digital Audio Editor
|
|
Copyright 1999-2009 Audacity Team
|
|
License: wxwidgets
|
|
|
|
Dan Horgan
|
|
|
|
******************************************************************//**
|
|
|
|
\file HelpCommand
|
|
\brief Declarations of HelpCommand and HelpCommandType classes
|
|
|
|
\class HelpCommand
|
|
\brief Command which returns information about the given command
|
|
|
|
*//*******************************************************************/
|
|
|
|
#ifndef __HELPCOMMAND__
|
|
#define __HELPCOMMAND__
|
|
|
|
#include "CommandType.h"
|
|
#include "Command.h"
|
|
|
|
class HelpCommandType : public CommandType
|
|
{
|
|
public:
|
|
virtual wxString BuildName();
|
|
virtual void BuildSignature(CommandSignature &signature);
|
|
virtual Command *Create(CommandOutputTarget *target);
|
|
};
|
|
|
|
class HelpCommand : public CommandImplementation
|
|
{
|
|
public:
|
|
HelpCommand(HelpCommandType &type, CommandOutputTarget *target)
|
|
: CommandImplementation(type, target) { }
|
|
virtual bool Apply(CommandExecutionContext context);
|
|
};
|
|
|
|
#endif /* End of include guard: __HELPCOMMAND__ */
|