rollback to 3428, before the mysterious removal of libs/* at 3431/3432
[ardour.git] / libs / ardour / filename_extensions.cc
diff --git a/libs/ardour/filename_extensions.cc b/libs/ardour/filename_extensions.cc
new file mode 100644 (file)
index 0000000..c51e7aa
--- /dev/null
@@ -0,0 +1,15 @@
+#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");
+
+}