eec19ca7af
* Export Preset widget doesn't allow overwriting existing presets * Some error detection for export preset loading * Moved some serialization code away from ExportProfileManager to respective classes git-svn-id: svn://localhost/ardour2/branches/3.0@3778 d708f5d6-7413-0410-9779-e7cbd77b26cf
18 lines
564 B
C++
18 lines
564 B
C++
#include <ardour/filename_extensions.h>
|
|
|
|
#include "i18n.h"
|
|
|
|
namespace ARDOUR {
|
|
|
|
const char* const template_suffix = X_(".template");
|
|
const char* const statefile_suffix = X_(".ardour");
|
|
const char* const pending_suffix = X_(".pending");
|
|
const char* const peakfile_suffix = X_(".peak");
|
|
const char* const backup_suffix = X_(".bak");
|
|
const char* const temp_suffix = X_(".tmp");
|
|
const char* const history_suffix = X_(".history");
|
|
const char* const export_preset_suffix = X_(".preset");
|
|
const char* const export_format_suffix = X_(".format");
|
|
|
|
}
|