summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/template_utils.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-10-17 12:41:28 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-10-17 12:41:28 -0400
commitf3d2ca0d9ac823d57af39d8d6a34c40e87fefa35 (patch)
treeae5e28532bb43bd845ba3f6634bfae6a6e2f0376 /libs/ardour/ardour/template_utils.h
parent08fbc53d5275094023ba8b0956236c1c945ca4b3 (diff)
get everything compiling with libardour built using -fvisibility=hidden
Diffstat (limited to 'libs/ardour/ardour/template_utils.h')
-rw-r--r--libs/ardour/ardour/template_utils.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/libs/ardour/ardour/template_utils.h b/libs/ardour/ardour/template_utils.h
index e01a62bbd1..dc56c53c44 100644
--- a/libs/ardour/ardour/template_utils.h
+++ b/libs/ardour/ardour/template_utils.h
@@ -24,23 +24,25 @@
#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