synthberry
Software MIDI synthesizer for the Raspberry Pi.
 All Classes Functions
note.h
1 #ifndef NOTE_H
2 #define NOTE_H
3 
4 #include <cstdint>
5 
6 class Note
7 {
8 public:
9  Note(uint8_t pitch, uint8_t velocity);
10  ~Note();
11  uint8_t getPitch() const;
12  uint8_t getVelocity() const;
13 
14 private:
15  uint8_t pitch;
16  uint8_t velocity;
17 };
18 
19 #endif // NOTE_H