add new debug bit for backend callbacks
[ardour.git] / libs / ardour / filename_extensions.cc
1 /*
2  * Copyright (C) 2007 Tim Mayberry <mojofunk@gmail.com>
3  * Copyright (C) 2008-2016 Paul Davis <paul@linuxaudiosystems.com>
4  * Copyright (C) 2009-2012 David Robillard <d@drobilla.net>
5  * Copyright (C) 2017 Robin Gareus <robin@gareus.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include "ardour/filename_extensions.h"
23
24 #include "pbd/i18n.h"
25
26 namespace ARDOUR {
27
28 const char* const template_suffix = X_(".template");
29 const char* const statefile_suffix = X_(".ardour");
30 const char* const pending_suffix = X_(".pending");
31 const char* const peakfile_suffix = X_(".peak");
32 const char* const backup_suffix = X_(".bak");
33 const char* const temp_suffix = X_(".tmp");
34 const char* const history_suffix = X_(".history");
35 const char* const export_preset_suffix = X_(".preset");
36 const char* const export_format_suffix = X_(".format");
37 const char* const session_archive_suffix = X_(".ardour-session-archive");
38 const char* const template_archive_suffix = X_(".ardour-template-archive");
39
40 }