00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef TEDDY__APPLICATION__BASE_AUDIO_MANAGER__H
00026 #define TEDDY__APPLICATION__BASE_AUDIO_MANAGER__H
00027
00028
00029 #include "Teddy/MixIn/Options.h"
00030 using Teddy::MixIn::Options;
00031
00032
00033 namespace Teddy {
00034 namespace Application {
00035
00036
00038 class BaseAudioManager {
00039 public:
00040 static const int OPT_MASTER;
00041 static const int OPT_SAMPLES;
00042 static const int OPT_MIDI;
00043 static const int OPT_CD;
00044
00045 public:
00046 BaseAudioManager( const Options &options );
00047
00048
00049 void playWav ( void *chunk );
00050 Options &getOptions();
00051
00052 protected:
00053 Options options;
00054 };
00055
00056
00057 };
00058 };
00059
00060
00061 #endif // TEDDY__APPLICATION__BASE_AUDIO_MANAGER__H
00062