isndsys/ss_manager.h
Go to the documentation of this file.00001 /* 00002 Copyright (C) 2005 by Jorrit Tyberghein 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public 00015 License along with this library; if not, write to the Free 00016 Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00017 */ 00018 00019 #ifndef __CS_SNDSYS_MANAGER_H__ 00020 #define __CS_SNDSYS_MANAGER_H__ 00021 00026 #include "isndsys/ss_stream.h" 00027 #include "isndsys/ss_data.h" 00028 00029 #include "csutil/scf.h" 00030 #include "csutil/scf_implementation.h" 00031 00035 struct iObject; 00036 00040 struct iSndSysWrapper : public virtual iBase 00041 { 00042 SCF_INTERFACE (iSndSysWrapper, 1, 0, 1); 00043 00045 virtual iObject* QueryObject () = 0; 00046 00054 CS_DEPRECATED_METHOD_MSG("Use GetData() instead.") 00055 virtual iSndSysStream* GetStream () = 0; 00056 00061 CS_DEPRECATED_METHOD_MSG("Use SetData() instead.") 00062 virtual void SetStream (iSndSysStream* stream) = 0; 00063 00065 virtual iSndSysData* GetData () = 0; 00067 virtual void SetData (iSndSysData* data) = 0; 00068 }; 00069 00074 struct iSndSysManager : public virtual iBase 00075 { 00076 SCF_INTERFACE (iSndSysManager, 0, 0, 1); 00077 00079 virtual iSndSysWrapper* CreateSound (const char* name) = 0; 00080 00082 virtual void RemoveSound (iSndSysWrapper* snd) = 0; 00083 00085 virtual void RemoveSound (size_t idx) = 0; 00086 00088 virtual void RemoveSounds () = 0; 00089 00091 virtual size_t GetSoundCount () const = 0; 00092 00094 virtual iSndSysWrapper* GetSound (size_t idx) = 0; 00095 00097 virtual iSndSysWrapper* FindSoundByName (const char* name) = 0; 00098 }; 00099 00102 #endif // __CS_SNDSYS_MANAGER_H__
Generated for Crystal Space by doxygen 1.4.7