diff options
author | Roland Reichwein <mail@reichwein.it> | 2025-01-12 17:57:49 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2025-01-12 17:57:49 +0100 |
commit | 6ba60f7329811a4bb3a07b1e6d81156d7f3a4ac3 (patch) | |
tree | ef35f8a046e8d679f4baef3c14a421e52eae9e15 /MIDIPlayer.cpp | |
parent | 208a484ca309a4919f83a385f402272039817ed9 (diff) |
Added MIDIPlayer (WIP)
Diffstat (limited to 'MIDIPlayer.cpp')
-rw-r--r-- | MIDIPlayer.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/MIDIPlayer.cpp b/MIDIPlayer.cpp new file mode 100644 index 0000000..41f852e --- /dev/null +++ b/MIDIPlayer.cpp @@ -0,0 +1,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() +{ +} |