NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / audiographer / audiographer / source.h
index 9a3f80719b2e0c3c5e83d16658b1a15848ed16de..2d80345b9bf924a1e5c660a403fc9c337c36a552 100644 (file)
@@ -15,19 +15,19 @@ namespace AudioGrapher
   * This is a pure virtual interface for all data sources in AudioGrapher
   */
 template<typename T>
-class LIBAUDIOGRAPHER_API 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;
 };