Fixed midi handling for control change and implemented tab selection with midi
This commit is contained in:
@@ -26,6 +26,16 @@ struct MidiMessage
|
||||
|
||||
bool operator==(const MidiMessage &other) const;
|
||||
};
|
||||
}
|
||||
|
||||
} // namespace midi
|
||||
|
||||
Q_DECLARE_METATYPE(midi::Command)
|
||||
Q_DECLARE_METATYPE(midi::MidiMessage)
|
||||
|
||||
QDebug operator<<(QDebug debug, const midi::MidiMessage &value);
|
||||
|
||||
QDataStream &operator<<(QDataStream &out, const midi::Command &value);
|
||||
QDataStream &operator>>(QDataStream &in, midi::Command &value);
|
||||
|
||||
QDataStream &operator<<(QDataStream &out, const midi::MidiMessage &value);
|
||||
QDataStream &operator>>(QDataStream &in, midi::MidiMessage &value);
|
||||
|
Reference in New Issue
Block a user