#pragma once #include #include class MIDIPlayer { public: MIDIPlayer(); void start(); void stop(); bool is_playing(); void set_file(const std::string& filename); std::vector get_filelist(); };