synthberry
Software MIDI synthesizer for the Raspberry Pi.
 All Classes Functions
debugobserver.h
1 #ifndef DEBUGOBSERVER_H
2 #define DEBUGOBSERVER_H
3 
4 #include "inoteobserver.h"
5 #include "note.h"
6 
8 {
9 public:
10  DebugObserver();
11  ~DebugObserver();
12  void noteAdded(const Note &note);
13  void noteRemoved(const Note &note);
14  void notify(const PNoteObservable &&subject);
15 };
16 
17 #endif // DEBUGOBSERVER_H