*** NEW CODING POLICY ***
[ardour.git] / libs / ardour / filename_extensions.cc
1 #include "ardour/filename_extensions.h"
2
3 #include "i18n.h"
4
5 namespace ARDOUR {                       
6
7 const char* const template_suffix = X_(".template");
8 const char* const statefile_suffix = X_(".ardour");
9 const char* const pending_suffix = X_(".pending");
10 const char* const peakfile_suffix = X_(".peak");
11 const char* const backup_suffix = X_(".bak");
12 const char* const temp_suffix = X_(".tmp");
13 const char* const history_suffix = X_(".history");
14 const char* const export_preset_suffix = X_(".preset");
15 const char* const export_format_suffix = X_(".format");
16
17 }