update export analyser for dBTP
[ardour.git] / libs / audiographer / audiographer / sink.h
index 84f7e12e4041d3dfdd8c9fb5930899c85cf2f164..da9e7350eed125c6fd470c2f455291edb473d8f4 100644 (file)
@@ -14,20 +14,20 @@ namespace AudioGrapher
   * This is a pure virtual interface for all data sinks in AudioGrapher
   */
 template <typename T>
-class LIBAUDIOGRAPHER_API Sink  {
+class /*LIBAUDIOGRAPHER_API*/ Sink  {
   public:
        virtual ~Sink () {}
-       
+
        /** Process given data.
          * The data can not be modified, so in-place processing is not allowed.
          * At least this function must be implemented by deriving classes
          */
        virtual void process (ProcessContext<T> const & context) = 0;
-       
+
        /** Process given data
          * Data may be modified, so in place processing is allowed.
          * The default implementation calls the non-modifying version,
-         * so this function does not need to be overriden.
+         * so this function does not need to be overridden.
          * However, if the sink can do in-place processing,
          * overriding this is highly recommended.
          *