// -*- c++ -*- #ifndef _SOUND_QT_H_ #define _SOUND_QT_H_ #include #include "sound.h" class QtSoundSystem : public SoundSystem { public: QtSoundSystem(); void setSound(Sound event, QString filename); void playSound(Sound event, bool wait=false); protected: QString playProg; QString SoundFiles[NbSounds]; QString SoundDir; }; #endif