-
Notifications
You must be signed in to change notification settings - Fork 0
/
SystemRealtimeEvent.h
55 lines (43 loc) · 1.11 KB
/
SystemRealtimeEvent.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// Created by madsy on 20.03.17.
//
#ifndef MIDITEST_SYSTEMREALTIMEEVENT_H
#define MIDITEST_SYSTEMREALTIMEEVENT_H
#include "MidiEvent.h"
/* None of the currently implemented Realtime events have any data */
class SysRtEvtTimingClock : public MidiEvent {
friend class MidiEventFactory;
public:
void print() override;
protected:
SysRtEvtTimingClock(unsigned int timestamp);
};
class SysRtEvtStart : public MidiEvent {
friend class MidiEventFactory;
public:
void print() override;
protected:
SysRtEvtStart(unsigned int timestamp);
};
class SysRtEvtContinue : public MidiEvent {
friend class MidiEventFactory;
public:
void print() override;
protected:
SysRtEvtContinue(unsigned int timestamp);
};
class SysRtEvtStop : public MidiEvent {
friend class MidiEventFactory;
public:
void print() override;
protected:
SysRtEvtStop(unsigned int timestamp);
};
class SysRtEvtActiveSensing : public MidiEvent {
friend class MidiEventFactory;
public:
void print() override;
protected:
SysRtEvtActiveSensing(unsigned int timestamp);
};
#endif //MIDITEST_SYSTEMREALTIMEEVENT_H