Don't move automation to follow region when a region has only been trimmed rather...
[ArdourMidi.git] / libs / ardour / ardour / template_utils.h
blobfefb4a7c47f77368286e3646c01adbfb658a7de9
2 #ifndef TEMPLATE_UTILS_INCLUDED
3 #define TEMPLATE_UTILS_INCLUDED
5 #include <vector>
7 #include "pbd/filesystem.h"
9 namespace ARDOUR {
11 PBD::sys::path system_template_directory ();
12 PBD::sys::path system_route_template_directory ();
14 PBD::sys::path user_template_directory ();
15 PBD::sys::path user_route_template_directory ();
17 struct TemplateInfo {
18 std::string name;
19 std::string path;
22 void find_route_templates (std::vector<TemplateInfo>& template_names);
23 void find_session_templates (std::vector<TemplateInfo>& template_names);
25 } // namespace ARDOUR
27 #endif