// $Id: AudioInputDevice.hh 4473 2005-06-12 14:12:49Z mthuurne $ #ifndef AUDIOINPUTDEVICE_HH #define AUDIOINPUTDEVICE_HH #include "Pluggable.hh" namespace openmsx { class AudioInputDevice : public Pluggable { public: /** * Read wave data */ virtual short readSample(const EmuTime& time) = 0; // Pluggable virtual const std::string& getClass() const; }; } // namespace openmsx #endif