ConvoEngine: Make max channel counts configurable.
[wdl/wdl-ol.git] / IPlugExamples / IPlugPlush / IPlugPlush.h
blob4eb469597492545395edb3e90c52f3216fbca687
1 #ifndef __IPLUGPLUSH__
2 #define __IPLUGPLUSH__
4 #include "IPlug_include_in_plug_hdr.h"
6 class IPlugPlush : public IPlug
8 public:
10 IPlugPlush(IPlugInstanceInfo instanceInfo);
11 ~IPlugPlush();
13 void Reset();
14 void OnParamChange(int paramIdx);
16 void ProcessDoubleReplacing(double** inputs, double** outputs, int nFrames);
18 private:
20 double mGain;
23 #endif