00001 /* 00002 $Id: cardsoundbuffer_static.h,v 1.1 2001/03/06 15:09:26 mbn Exp $ 00003 00004 ------------------------------------------------------------------------ 00005 ClanLib, the platform independent game SDK. 00006 00007 This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE 00008 version 2. See COPYING for details. 00009 00010 For a total list of contributers see CREDITS. 00011 00012 ------------------------------------------------------------------------ 00013 */ 00014 00015 #ifndef header_cardsoundbuffer_static 00016 #define header_cardsoundbuffer_static 00017 00018 #include "API/Sound/static_soundprovider.h" 00019 #include "API/Sound/sound.h" 00020 00021 class CL_CardSoundBuffer_Playback; 00022 class CL_CardSoundBuffer_Static 00023 { 00024 public: 00025 CL_StaticSoundProvider *provider; 00026 00027 CL_CardSoundBuffer_Static(CL_StaticSoundProvider *_provider) 00028 { 00029 provider = _provider; 00030 } 00031 00032 virtual ~CL_CardSoundBuffer_Static() { ; } 00033 virtual CL_CardSoundBuffer_Playback *prepare()=0; 00034 }; 00035 00036 #endif
1.2.6 written by Dimitri van Heesch,
© 1997-2001