X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Ftemplate_utils.h;h=dc56c53c445b39d4b992e2e50554d1fa6693d62b;hb=ad017365f7a73f8ba57f667cc1aa36478b48c50e;hp=5542e8420fc117bb3bd2740cf141e2e03baab8d3;hpb=9f4c7a9e9edd260a72f040b036982d4c5da89292;p=ardour.git diff --git a/libs/ardour/ardour/template_utils.h b/libs/ardour/ardour/template_utils.h index 5542e8420f..dc56c53c44 100644 --- a/libs/ardour/ardour/template_utils.h +++ b/libs/ardour/ardour/template_utils.h @@ -1,28 +1,48 @@ +/* + Copyright (C) 2012 Paul Davis + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + #ifndef TEMPLATE_UTILS_INCLUDED #define TEMPLATE_UTILS_INCLUDED +#include #include -#include "pbd/filesystem.h" +#include "ardour/libardour_visibility.h" namespace ARDOUR { - using std::vector; - using namespace PBD; - - sys::path system_template_directory (); - sys::path system_route_template_directory (); + LIBARDOUR_API std::string system_template_directory (); + LIBARDOUR_API std::string system_route_template_directory (); - sys::path user_template_directory (); - sys::path user_route_template_directory (); + LIBARDOUR_API std::string user_template_directory (); + LIBARDOUR_API std::string user_route_template_directory (); - struct RouteTemplateInfo { - std::string name; - std::string path; + struct LIBARDOUR_API TemplateInfo { + std::string name; + std::string path; }; - void find_route_templates (std::vector& template_names); + LIBARDOUR_API void find_route_templates (std::vector& template_names); + LIBARDOUR_API void find_session_templates (std::vector& template_names); + + LIBARDOUR_API std::string session_template_dir_to_file (std::string const &); } // namespace ARDOUR