| 154 | } |
| 155 | |
| 156 | std::string MidiMessage::ToString() const |
| 157 | { |
| 158 | return "Type: " + MidiTypeToString(_type) + |
| 159 | " Note: " + std::to_string(_note) + |
| 160 | " Channel: " + std::to_string(_channel) + |
| 161 | " Value: " + std::to_string(_value); |
| 162 | } |
| 163 | |
| 164 | void MidiMessage::ResolveVariables() |
| 165 | { |
no test coverage detected