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)
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
/**********************************************************************
|
|
|
|
Audacity - A Digital Audio Editor
|
|
Copyright 1999-2009 Audacity Team
|
|
License: GPL v2 - see LICENSE.txt
|
|
|
|
Dan Horgan
|
|
|
|
******************************************************************//**
|
|
|
|
\file SelectCommand.h
|
|
\brief Declarations for SelectCommand and SelectCommandType classes
|
|
|
|
*//*******************************************************************/
|
|
|
|
#ifndef __SELECTCOMMAND__
|
|
#define __SELECTCOMMAND__
|
|
|
|
#include "CommandType.h"
|
|
#include "Command.h"
|
|
|
|
class SelectCommandType : public CommandType
|
|
{
|
|
public:
|
|
virtual wxString BuildName();
|
|
virtual void BuildSignature(CommandSignature &signature);
|
|
virtual Command *Create(CommandOutputTarget *target);
|
|
};
|
|
|
|
class SelectCommand : public CommandImplementation
|
|
{
|
|
public:
|
|
SelectCommand(SelectCommandType &type, CommandOutputTarget *target)
|
|
: CommandImplementation(type, target) { }
|
|
virtual bool Apply(CommandExecutionContext context);
|
|
};
|
|
|
|
#endif /* End of include guard: __SELECTCOMMAND__ */
|