summaryrefslogtreecommitdiffhomepage
path: root/MIDIPlayer.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2025-01-12 17:57:49 +0100
committerRoland Reichwein <mail@reichwein.it>2025-01-12 17:57:49 +0100
commit6ba60f7329811a4bb3a07b1e6d81156d7f3a4ac3 (patch)
treeef35f8a046e8d679f4baef3c14a421e52eae9e15 /MIDIPlayer.cpp
parent208a484ca309a4919f83a385f402272039817ed9 (diff)
Added MIDIPlayer (WIP)
Diffstat (limited to 'MIDIPlayer.cpp')
-rw-r--r--MIDIPlayer.cpp27
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()
+{
+}