Prefer std::vector<> over C-style malloc/free**
[ardour.git] / libs / audiographer / audiographer / utils / listed_source.h
index 6ceab6b27f2939e64c8c86f29e6f6f5fc483c3d6..7069f13c725066a356fe0c495d0d76d647f6a96a 100644 (file)
@@ -13,17 +13,17 @@ 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); }
        void clear_outputs () { outputs.clear(); }
        void remove_output (typename Source<T>::SinkPtr output) { outputs.remove(output); }
-       
+
   protected:
-       
+
        typedef std::list<typename Source<T>::SinkPtr> SinkList;
-       
+
        /// Helper for derived classes
        void output (ProcessContext<T> const & c)
        {