mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 15:15:41 +01:00
implement missing methods for MIDISceneChange
This commit is contained in:
parent
6610ed615b
commit
0f01b4078d
1 changed files with 20 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue