synthberry
Software MIDI synthesizer for the Raspberry Pi.
Main Page
Classes
Files
File List
All
Classes
Functions
src
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
}
Generated on Fri Apr 4 2014 10:15:23 for synthberry by
1.8.1.2