Compare commits

...

2 Commits

Author SHA1 Message Date
John Emmas 5737468768 libardour: some new classes get used in gtk2_ardour (so need to get exported) 2022-09-10 11:39:53 +01:00
John Emmas 7418da4703 Add a missing #include
(needed for call to std::back_insert_iterator)
2022-09-10 10:20:37 +01:00
2 changed files with 5 additions and 3 deletions

View File

@ -28,11 +28,12 @@
#include <boost/function.hpp>
#include <ardour/libardour_visibility.h>
#include <curl/curl.h>
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() {}

View File

@ -17,6 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <algorithm>
#include <iterator>
#include <ctype.h>
#include "pbd/whitespace.h"