diff options
Diffstat (limited to 'src/engine/events/Note.hpp')
-rw-r--r-- | src/engine/events/Note.hpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/engine/events/Note.hpp b/src/engine/events/Note.hpp index 418e9130..4ead051c 100644 --- a/src/engine/events/Note.hpp +++ b/src/engine/events/Note.hpp @@ -35,21 +35,21 @@ namespace Events { class Note : public Event { public: - Note(Engine& engine, - SharedPtr<Responder> responder, - SampleCount timestamp, - NodeImpl* node, - bool on, - uint8_t note_num, - uint8_t velocity); + Note(Engine& engine, + SharedPtr<Request> request, + SampleCount timestamp, + NodeImpl* node, + bool on, + uint8_t note_num, + uint8_t velocity); - Note(Engine& engine, - SharedPtr<Responder> responder, - SampleCount timestamp, - const Raul::Path& node_path, - bool on, - uint8_t note_num, - uint8_t velocity); + Note(Engine& engine, + SharedPtr<Request> request, + SampleCount timestamp, + const Raul::Path& node_path, + bool on, + uint8_t note_num, + uint8_t velocity); void execute(ProcessContext& context); void post_process(); |