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

Added Steve Parry's patch that adds the Open and SaveAs commands to scripting.

This commit is contained in:
james.k.crook@gmail.com
2014-01-13 22:12:20 +00:00
parent 30e6a3dec4
commit 6fc830c0b6
6 changed files with 212 additions and 0 deletions

View File

@@ -30,6 +30,7 @@
#include "SetProjectInfoCommand.h"
#include "PreferenceCommands.h"
#include "ImportExportCommands.h"
#include "OpenSaveCommands.h"
CommandDirectory *CommandDirectory::mInstance = NULL;
@@ -58,6 +59,8 @@ CommandDirectory::CommandDirectory()
AddCommand(new GetPreferenceCommandType());
AddCommand(new ImportCommandType());
AddCommand(new ExportCommandType());
AddCommand(new OpenProjectCommandType());
AddCommand(new SaveProjectCommandType());
}
CommandDirectory::~CommandDirectory()