X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Faudiographer%2Faudiographer%2Fsink.h;h=da9e7350eed125c6fd470c2f455291edb473d8f4;hb=c1bd70d8b085acf3895303459cbe50d7dcdd95fe;hp=84f7e12e4041d3dfdd8c9fb5930899c85cf2f164;hpb=e7c47747286c16aa575456b07120e1e8e8271bd5;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. *