ASPiK SDK
TutorialVST2Effect.h
1 // This file is part of VSTGUI. It is subject to the license terms
2 // in the LICENSE file found in the top-level directory of this
3 // distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
4 
5 #ifndef __TutorialVST2Effect__
6 #define __TutorialVST2Effect__
7 
8 #include "public.sdk/source/vst2.x/audioeffectx.h"
9 
10 #include "TutorialParameters.h"
11 
12 class TutorialVST2Effect : public AudioEffectX
13 {
14 public:
15  TutorialVST2Effect (audioMasterCallback audioMaster);
16 
17  void processReplacing (float** inputs, float** outputs, VstInt32 sampleFrames);
18 
19  void setParameter (VstInt32 index, float value);
20  float getParameter (VstInt32 index);
21 
22 protected:
23  float parameters[kNumParameters];
24 };
25 
26 #endif // __TutorialVST2Effect__
Definition: TutorialVST2Effect.h:12