fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / directory_names.cc
1 /*
2     Copyright (C) 2012 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "ardour/directory_names.h"
21
22 #include "pbd/i18n.h"
23
24 namespace ARDOUR {
25
26 const char* const old_sound_dir_name = X_("sounds");
27 const char* const sound_dir_name = X_("audiofiles");
28 const char* const midi_dir_name = X_("midifiles");
29 const char* const midi_patch_dir_name = X_("patchfiles");
30 const char* const video_dir_name = X_("videofiles");
31 const char* const peak_dir_name = X_("peaks");
32 const char* const dead_dir_name = X_("dead");
33 const char* const interchange_dir_name = X_("interchange");
34 const char* const export_dir_name = X_("export");
35 const char* const export_formats_dir_name = X_("export");
36 const char* const templates_dir_name = X_("templates");
37 const char* const route_templates_dir_name = X_("route_templates");
38 const char* const surfaces_dir_name = X_("surfaces");
39 const char* const ladspa_dir_name = X_("ladspa");
40 const char* const theme_dir_name = X_("themes");
41 const char* const panner_dir_name = X_("panners");
42 const char* const backend_dir_name = X_("backends");
43 const char* const automation_dir_name = X_("automation");
44 const char* const analysis_dir_name = X_("analysis");
45 const char* const plugins_dir_name = X_("plugins");
46 const char* const externals_dir_name = X_("externals");
47 const char* const lua_dir_name = X_("scripts");
48
49 }