qtmidi.h
Go to the documentation of this file.00001
00002
00005 #ifndef MUSIC_MACOSX_QUICKTIME_H
00006 #define MUSIC_MACOSX_QUICKTIME_H
00007
00008 #include "music_driver.hpp"
00009
00010 class MusicDriver_QtMidi: public MusicDriver {
00011 public:
00012 const char *Start(const char * const *param);
00013
00014 void Stop();
00015
00016 void PlaySong(const char *filename);
00017
00018 void StopSong();
00019
00020 bool IsSongPlaying();
00021
00022 void SetVolume(byte vol);
00023 };
00024
00025 class FMusicDriver_QtMidi: public MusicDriverFactory<FMusicDriver_QtMidi> {
00026 public:
00027 static const int priority = 10;
00028 const char *GetName() { return "qt"; }
00029 const char *GetDescription() { return "QuickTime MIDI Driver"; }
00030 Driver *CreateInstance() { return new MusicDriver_QtMidi(); }
00031 };
00032
00033 #endif