X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Ftemplate_utils.h;h=07ba1d62ae178aed8aa0934328442ca3979f8306;hb=e0a83a75;hp=a61dbcf15832955c434449b06662190f9c7e7f39;hpb=306e6475e52e6a8fe308702520f61fbcd17c5ece;p=ardour.git diff --git a/libs/ardour/ardour/template_utils.h b/libs/ardour/ardour/template_utils.h index a61dbcf158..07ba1d62ae 100644 --- a/libs/ardour/ardour/template_utils.h +++ b/libs/ardour/ardour/template_utils.h @@ -1,3 +1,22 @@ +/* + 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 @@ -5,23 +24,27 @@ #include #include +#include "ardour/libardour_visibility.h" + namespace ARDOUR { - std::string system_template_directory (); - std::string system_route_template_directory (); + LIBARDOUR_API std::string system_template_directory (); + LIBARDOUR_API std::string system_route_template_directory (); - std::string user_template_directory (); - std::string user_route_template_directory (); + LIBARDOUR_API std::string user_template_directory (); + LIBARDOUR_API std::string user_route_template_directory (); - struct TemplateInfo { + struct LIBARDOUR_API TemplateInfo { std::string name; std::string path; + std::string description; + std::string created_with; }; - void find_route_templates (std::vector& template_names); - void find_session_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, bool read_xml = false); - std::string session_template_dir_to_file (std::string const &); + LIBARDOUR_API std::string session_template_dir_to_file (std::string const &); } // namespace ARDOUR