NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / audiographer / audiographer / source.h
index deefb900ee2b81b6f61dc7ca01ea559d1d91086c..2d80345b9bf924a1e5c660a403fc9c337c36a552 100644 (file)
@@ -6,6 +6,8 @@
 
 #include <boost/shared_ptr.hpp>
 
+#include "audiographer/visibility.h"
+
 namespace AudioGrapher
 {
 
@@ -13,19 +15,19 @@ namespace AudioGrapher
   * This is a pure virtual interface for all data sources in AudioGrapher
   */
 template<typename T>
-class Source
+class /*LIBAUDIOGRAPHER_API*/ Source
 {
   public:
        virtual ~Source () { }
-       
+
        typedef boost::shared_ptr<Sink<T> > SinkPtr;
-       
+
        /// Adds an output to this source. All data generated is forwarded to \a output
        virtual void add_output (SinkPtr output) = 0;
-       
+
        /// Removes all outputs added
        virtual void clear_outputs () = 0;
-       
+
        /// Removes a specific output from this source
        virtual void remove_output (SinkPtr output) = 0;
 };