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