// $Id: NullSoundDriver.hh 5924 2006-12-14 20:50:54Z m9710797 $ #ifndef NULLSOUNDDRIVER_HH #define NULLSOUNDDRIVER_HH #include "SoundDriver.hh" namespace openmsx { class NullSoundDriver : public SoundDriver { public: virtual void mute(); virtual void unmute(); virtual unsigned getFrequency() const; virtual unsigned getSamples() const; virtual double uploadBuffer(short* buffer, unsigned len); }; } // namespace openmsx #endif