summaryrefslogtreecommitdiff
path: root/libs/audiographer/audiographer/utils
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2014-01-13 14:58:04 +0000
committerJohn Emmas <johne53@tiscali.co.uk>2014-01-13 14:58:04 +0000
commit5fc1cbb65c94ce495d2c30c22d830a2975bee47f (patch)
tree540841494d6ade2bbd3ecb6c066c6a630868e83f /libs/audiographer/audiographer/utils
parent8e51a6c84f255f936b797dcb490c4157e02c6c85 (diff)
'libs/audiographer' - DLL visibility stuff and associated changes needed for building with MSVC. Currently includes debugging information and things that are just commented out until we have known compatibility with the other platforms (i.e. contains stuff to be removed at a later date)
Diffstat (limited to 'libs/audiographer/audiographer/utils')
-rw-r--r--libs/audiographer/audiographer/utils/identity_vertex.h2
-rw-r--r--libs/audiographer/audiographer/utils/listed_source.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libs/audiographer/audiographer/utils/identity_vertex.h b/libs/audiographer/audiographer/utils/identity_vertex.h
index 1d7ed80697..5c9cfc9934 100644
--- a/libs/audiographer/audiographer/utils/identity_vertex.h
+++ b/libs/audiographer/audiographer/utils/identity_vertex.h
@@ -11,7 +11,7 @@ namespace AudioGrapher
/// Outputs its input directly to a number of Sinks
template<typename T = DefaultSampleType>
-class LIBAUDIOGRAPHER_API IdentityVertex : public ListedSource<T>, Sink<T>
+class /*LIBAUDIOGRAPHER_API*/ IdentityVertex : public ListedSource<T>, Sink<T>
{
public:
void process (ProcessContext<T> const & c) { ListedSource<T>::output(c); }
diff --git a/libs/audiographer/audiographer/utils/listed_source.h b/libs/audiographer/audiographer/utils/listed_source.h
index 6ceab6b27f..b9bfbc65f8 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<typename T = DefaultSampleType>
-class LIBAUDIOGRAPHER_API ListedSource : public Source<T>
+class /*LIBAUDIOGRAPHER_API*/ ListedSource : public Source<T>
{
public:
void add_output (typename Source<T>::SinkPtr output) { outputs.push_back(output); }