00001 #ifndef __NE_SOUNDLOADER_H__
00002 #define __NE_SOUNDLOADER_H__
00003
00004 #ifndef DOXYGEN_IGNORE_TAG
00005
00026 #endif
00027
00028 #include <string>
00029
00030 namespace NE
00031 {
00032 class SoundLoader
00033 {
00034 public:
00035 virtual Sound* loadSoundFromFile(const std::string& fileName)=0;
00036 };
00037 }
00038
00052 #endif