Main Page | Class Hierarchy | Class List | File List | Class Members | File Members

SoundMedia.h

Go to the documentation of this file.
00001 
00007 #ifndef _SOUNDMEDIA_H_
00008 #define _SOUNDMEDIA_H_
00009 
00010 #include "fmod.h"
00011 #include "fmod_errors.h"
00012 #include "../Util/Log.h"
00013 
00014 #pragma comment (lib, "libs/fmodvc.lib")
00015 
00016 class SoundMedia {
00017         public:
00018                 SoundMedia();
00019                 virtual ~SoundMedia();
00020 
00021                 bool initialize();
00022                 bool deInitialize();
00023 
00024                 virtual bool load(const char *filename) { return false; };
00025                 virtual bool unload() { return false; };
00026                 virtual void play() {};
00027                 virtual void stop() {};
00028 };
00029 
00030 #endif

Generated on Sun Jun 5 15:47:05 2005 for Defacto by  doxygen 1.4.3