From 573746876891f5860ffb529c2fdf5bc40dda9488 Mon Sep 17 00:00:00 2001 From: John Emmas Date: Sat, 10 Sep 2022 11:39:53 +0100 Subject: [PATCH] libardour: some new classes get used in gtk2_ardour (so need to get exported) --- libs/ardour/ardour/library.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libs/ardour/ardour/library.h b/libs/ardour/ardour/library.h index 308fda3155..61dbed98f3 100644 --- a/libs/ardour/ardour/library.h +++ b/libs/ardour/ardour/library.h @@ -28,11 +28,12 @@ #include +#include #include namespace ARDOUR { -class LibraryDescription +class LIBARDOUR_API LibraryDescription { public: LibraryDescription (std::string const & n, std::string const & a, std::string const & d, std::string const & u, std::string const & l, std::string const & td, std::string const & s) @@ -60,7 +61,7 @@ class LibraryDescription bool _installed; }; -class Downloader { +class LIBARDOUR_API Downloader { public: Downloader (std::string const & url, std::string const & destdir); ~Downloader (); @@ -94,7 +95,7 @@ class Downloader { void download (); }; -class LibraryFetcher { +class LIBARDOUR_API LibraryFetcher { public: LibraryFetcher() {}