synthberry
Software MIDI synthesizer for the Raspberry Pi.
 All Classes Functions
note.cpp
1 #include "note.h"
2 
3 Note::Note(uint8_t pitch, uint8_t velocity) :
4  pitch(pitch),
5  velocity(velocity)
6 {
7 }
8 
9 Note::~Note()
10 {
11 }
12 
13 uint8_t Note::getPitch() const
14 {
15  return pitch;
16 }
17 
18 uint8_t Note::getVelocity() const
19 {
20  return velocity;
21 }