diff options
author | Florian Jung <flo@thinkpad.(none)> | 2010-12-30 17:32:08 +0100 |
---|---|---|
committer | Florian Jung <flo@thinkpad.(none)> | 2010-12-30 17:32:08 +0100 |
commit | 725302c54573d1095d49d466ebda94abe9c13dd5 (patch) | |
tree | 958d3ca2e1eb9407cd9b41d1645fdb874db918ab /synth/channel.h | |
parent | c1a2c43aa8d4c5bcfa345fd3b92215c18c938683 (diff) |
Use NoteSkel wherever possible
Notes are still created from the built-in Note class, but
theoretically, other classes could be used, too.
Diffstat (limited to 'synth/channel.h')
-rw-r--r-- | synth/channel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synth/channel.h b/synth/channel.h index ead3a67..2668bc4 100644 --- a/synth/channel.h +++ b/synth/channel.h @@ -7,7 +7,7 @@ #include "fixed.h" #include "programs.h" -#include "note.h" +#include "note_skel.h" #include "defines.h" #include "util.h" @@ -50,7 +50,7 @@ class Channel fixed_t pitchbend; float max_pitchbend; - std::list<Note*> notes; + std::list<NoteSkel*> notes; bool always_reattack; bool do_portamento; |