Use ISC license for RDFF (same idea, MIT style, just prettier).
[ardour.git] / libs / ardour / filename_extensions.cc
1 #include "ardour/filename_extensions.h"
2
3 #include <stdint.h>
4 #include "i18n.h"
5
6 namespace ARDOUR {
7
8 const char* const template_suffix = X_(".template");
9 const char* const statefile_suffix = X_(".ardour");
10 const char* const pending_suffix = X_(".pending");
11 const char* const peakfile_suffix = X_(".peak");
12 const char* const backup_suffix = X_(".bak");
13 const char* const temp_suffix = X_(".tmp");
14 const char* const history_suffix = X_(".history");
15 const char* const export_preset_suffix = X_(".preset");
16 const char* const export_format_suffix = X_(".format");
17
18 }