ofxPDSP
Controller.h
1 
2 #ifndef OFXPDSP_PDSPCONTROLLER_H_INCLUDED
3 #define OFXPDSP_PDSPCONTROLLER_H_INCLUDED
4 
5 #ifndef __ANDROID__
6 
7 #include "../MidiIn.h"
8 
9 namespace pdsp{
10 
11 class Controller{
12 public:
13 
14  virtual void processMidi(const pdsp::midi::Input &midiInProcessor, const int &bufferSize ) noexcept = 0;
15 
16 };
17 
18 }
19 
20 #endif
21 
22 #endif // OFXPDSP_PDSPCONTROLLER_H_INCLUDED
Definition: MidiIn.h:22
Definition: Controller.h:11
Thread-safe value control with smoothing.
Definition: SequencerBridge.h:11