1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
#include "MIDIPlayer.h" MIDIPlayer::MIDIPlayer() { } void MIDIPlayer::start() { "aplaymidi -p24 locked_out_of_heaven.midi" } void MIDIPlayer::stop() { } bool MIDIPlayer::is_playing() { } void MIDIPlayer::set_file(const std::string& filename) { } std::vector<std::string> MIDIPlayer::get_filelist() { }