X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Faudiographer%2Faudiographer%2Fsink.h;h=da9e7350eed125c6fd470c2f455291edb473d8f4;hb=b61146365f827fd04fe54a79e0c08926c9e2e9b5;hp=84f7e12e4041d3dfdd8c9fb5930899c85cf2f164;hpb=b880a381523b2cfdb7ebd17c27fff1adf90fa028;p=ardour.git diff --git a/libs/audiographer/audiographer/sink.h b/libs/audiographer/audiographer/sink.h index 84f7e12e40..da9e7350ee 100644 --- a/libs/audiographer/audiographer/sink.h +++ b/libs/audiographer/audiographer/sink.h @@ -14,20 +14,20 @@ namespace AudioGrapher * This is a pure virtual interface for all data sinks in AudioGrapher */ template -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 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. *