Yet Another Synthesizer Engine
 
Loading...
Searching...
No Matches
event.hh
1//
2// YASE Event Header
3//
4// Copyright (C) 2022 Eric Klavins
5// This file is part of YASE
6//
7// YASE is free software: you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the Free Software
9// Foundation, either version 3 of the License, or (at your option) any later
10// version.
11//
12// YASE is distributed in the hope that it will be useful, but WITHOUT ANY
13// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15// details.
16//
17// You should have received a copy of the GNU General Public License along
18// with YASE. If not, see <https://www.gnu.org/licenses/>.
19//
20
21#ifndef YASE_EVENT_H
22#define YASE_EVENT_H
23
24#include <string.h>
25
26namespace yase {
27
29
32 class Event {
33
34 public:
35
36 Event(int code, int id, int value, int port) :
37 code(code),
38 id(id),
39 value(value),
40 port(port) {}
41
42 Event(const Event &e) :
43
44 code(e.code),
45 id(e.id),
46 value(e.value),
47 port(e.port) {}
48
49 double frequency() const;
50 int code,
54
55 private:
56
57 };
58
59}
60
61#endif
Contains MIDI event information.
Definition event.hh:32
int id
The MIDI id (second byte sent)
Definition event.hh:51
int code
The MIDI code (first byte set)
Definition event.hh:50
int port
The MIDI port.
Definition event.hh:53
int value
The MIDI value (third byt sent)
Definition event.hh:52
Definition additive_saw.cc:24