refactoring to prepare for real-time export
[ardour.git] / libs / ardour / ardour / template_utils.h
index e01a62bbd125fbf745843863b0c35f75bc385deb..b2f155ee45f0c05d33e378b748a95d19b64aeb7c 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Paul Davis 
+    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
 #include <string>
 #include <vector>
 
+#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;
        };
 
-       void find_route_templates (std::vector<TemplateInfo>& template_names);
-       void find_session_templates (std::vector<TemplateInfo>& template_names);
+       LIBARDOUR_API void find_route_templates (std::vector<TemplateInfo>& template_names);
+       LIBARDOUR_API void find_session_templates (std::vector<TemplateInfo>& template_names);
 
-       std::string session_template_dir_to_file (std::string const &);
+       LIBARDOUR_API std::string session_template_dir_to_file (std::string const &);
 
 } // namespace ARDOUR