[suggestion] virtual setNonRealtime

Hello,

I'm doing an host which is an AudioProcessor and an AudioProcessorListener at the same time.

I would override like this  : 

setNonRealtime(bool b){

     AudioProcessor::setNonRealtime(b);

     mPluginHosted->setNonRealtime(b);

}

 

Cheers,

Louis

You mean a plugin that's hosting another one. Yes.. good point, I guess I should make that method virtual!