1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-08 16:11:14 +02:00
audacity/src/commands/HelpCommand.h
martynshaw99 4ce2643d5f Remove the
// Indentation settings for Vim and Emacs
etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
2013-09-24 00:14:37 +00:00

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__ */