synthberry
Software MIDI synthesizer for the Raspberry Pi.
 All Classes Functions
imidisource.h
1 #ifndef IMIDISOURCE_H
2 #define IMIDISOURCE_H
3 
4 #include <memory>
5 #include "notes.h"
6 
8 {
9 public:
10  virtual ~IMidiSource(){};
11  virtual void run() = 0;
12  virtual Notes& getNotes() = 0;
13 };
14 
15 using PMidiSource = std::shared_ptr<IMidiSource>;
16 
17 #endif // IMIDISOURCE_H