00001 /* 00002 * Dummy sound header 00003 * 00004 * This file is part of the "SoftPixel Engine" (Copyright (c) 2008 by Lukas Hermanns) 00005 * See "SoftPixelEngine.hpp" for license information. 00006 */ 00007 00008 #ifndef __SP_AUDIO_SOUNDDEVICE_DUMMY_H__ 00009 #define __SP_AUDIO_SOUNDDEVICE_DUMMY_H__ 00010 00011 00012 #include "Base/spStandard.hpp" 00013 #include "SoundSystem/spSoundDevice.hpp" 00014 #include "SoundSystem/spDummySound.hpp" 00015 00016 00017 namespace sp 00018 { 00019 namespace audio 00020 { 00021 00022 00023 class SP_EXPORT DummySoundDevice : public SoundDevice 00024 { 00025 00026 public: 00027 00028 DummySoundDevice(); 00029 ~DummySoundDevice(); 00030 00031 /* Functions */ 00032 00033 io::stringc getInterface() const; 00034 00035 DummySound* createSound(); 00036 00037 }; 00038 00039 00040 } // /namespace audio 00041 00042 } // /namespace sp 00043 00044 00045 #endif 00046 00047 00048 00049 // ================================================================================