From 854ff8d8861c16f35bcde96f1cfd7cb3ffedd7f8 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 4 Dec 2014 21:31:30 -0500 Subject: implement missing methods for MIDISceneChange --- libs/ardour/midi_scene_change.cc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'libs/ardour/midi_scene_change.cc') diff --git a/libs/ardour/midi_scene_change.cc b/libs/ardour/midi_scene_change.cc index 5e9394d2db..c10ca74904 100644 --- a/libs/ardour/midi_scene_change.cc +++ b/libs/ardour/midi_scene_change.cc @@ -156,3 +156,23 @@ MIDISceneChange::operator==(const MIDISceneChange& other) const _bank == other._bank && _channel == other._channel; } + +void +MIDISceneChange::set_channel (int channel) +{ + _channel = channel; +} + +void +MIDISceneChange::set_program (int program) +{ + _program = program; +} + +void +MIDISceneChange::set_bank (int bank) +{ + _bank = bank; +} + + -- cgit v1.2.3