summaryrefslogtreecommitdiff
path: root/libs/ardour/filename_extensions.cc
blob: c51e7aa9153e5615424543083eb66bb6fd6e25f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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");

}