mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-26 17:38:10 +02:00
// Indentation settings for Vim and Emacs etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
66 lines
1.5 KiB
C++
66 lines
1.5 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
Audacity(R) is copyright (c) 1999-2009 Audacity Team.
|
|
File License: wxwidgets
|
|
|
|
ImportExportCommands.h
|
|
Dan Horgan
|
|
|
|
******************************************************************//**
|
|
|
|
\class ImportCommand
|
|
\brief Command for importing audio
|
|
|
|
\class ExportCommand
|
|
\brief Command for exporting audio
|
|
|
|
*//*******************************************************************/
|
|
|
|
#include "Command.h"
|
|
#include "CommandType.h"
|
|
|
|
// Import
|
|
|
|
class ImportCommandType : public CommandType
|
|
{
|
|
public:
|
|
virtual wxString BuildName();
|
|
virtual void BuildSignature(CommandSignature &signature);
|
|
virtual Command *Create(CommandOutputTarget *target);
|
|
};
|
|
|
|
class ImportCommand : public CommandImplementation
|
|
{
|
|
public:
|
|
ImportCommand(CommandType &type,
|
|
CommandOutputTarget *target)
|
|
: CommandImplementation(type, target)
|
|
{ }
|
|
|
|
virtual ~ImportCommand();
|
|
virtual bool Apply(CommandExecutionContext context);
|
|
};
|
|
|
|
// Export
|
|
|
|
class ExportCommandType : public CommandType
|
|
{
|
|
public:
|
|
virtual wxString BuildName();
|
|
virtual void BuildSignature(CommandSignature &signature);
|
|
virtual Command *Create(CommandOutputTarget *target);
|
|
};
|
|
|
|
class ExportCommand : public CommandImplementation
|
|
{
|
|
public:
|
|
ExportCommand(CommandType &type,
|
|
CommandOutputTarget *target)
|
|
: CommandImplementation(type, target)
|
|
{ }
|
|
|
|
virtual ~ExportCommand();
|
|
virtual bool Apply(CommandExecutionContext context);
|
|
};
|