From f8557cc00ffad71dda92dcc4a82c097d9d707c3e Mon Sep 17 00:00:00 2001 From: John Emmas Date: Wed, 15 Mar 2023 13:39:56 +0000 Subject: [PATCH] Export AudioGraphper::Source and AudioGrapher::ListedSource after an MSVC update this morning, these classes need to be exportable now - I'm not quite sure why :-( --- libs/audiographer/audiographer/source.h | 2 +- libs/audiographer/audiographer/utils/listed_source.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/audiographer/audiographer/source.h b/libs/audiographer/audiographer/source.h index 2d80345b9b..8196e4a25e 100644 --- a/libs/audiographer/audiographer/source.h +++ b/libs/audiographer/audiographer/source.h @@ -15,7 +15,7 @@ namespace AudioGrapher * This is a pure virtual interface for all data sources in AudioGrapher */ template -class /*LIBAUDIOGRAPHER_API*/ Source +class LIBAUDIOGRAPHER_API Source { public: virtual ~Source () { } diff --git a/libs/audiographer/audiographer/utils/listed_source.h b/libs/audiographer/audiographer/utils/listed_source.h index 7069f13c72..6396b23fc7 100644 --- a/libs/audiographer/audiographer/utils/listed_source.h +++ b/libs/audiographer/audiographer/utils/listed_source.h @@ -13,7 +13,7 @@ namespace AudioGrapher /// An generic \a Source that uses a \a std::list for managing outputs template -class /*LIBAUDIOGRAPHER_API*/ ListedSource : public Source +class LIBAUDIOGRAPHER_API ListedSource : public Source { public: void add_output (typename Source::SinkPtr output) { outputs.push_back(output); }