00001 /* 00002 * ExNihilo 3D Engine 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation; either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program 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 00012 * GNU Library General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software 00016 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00017 * 00018 * Please read AUTHORS file !!! 00019 * 00020 * $Id: ExCSound.cpp,v 1.6 2002/06/27 10:37:43 data Exp $ 00021 * 00022 */ 00023 00024 #include "ExCSound.h" 00025 00026 #ifndef UNIX_SRC 00027 ExCSound::ExCSound(void) 00028 { 00029 Guard(ExCSound::ExCSound(void)) 00030 UnGuard 00031 } 00032 00033 ExCSound::ExCSound(char *FileName) 00034 { 00035 Guard(ExCSound::ExCSound(char *FileName)) 00036 UnGuard 00037 } 00038 00039 ExCSound::ExCSound(const ExCSound& sound) 00040 { 00041 Guard(ExCSound::ExCSound(const ExCSound& sound)) 00042 UnGuard 00043 } 00044 00045 ExCSound::~ExCSound(void) 00046 { 00047 Guard(ExCSound::~ExCSound(void)) 00048 UnGuard 00049 } 00050 00051 bool ExCSound::InitCom(void) 00052 { 00053 Guard(ExCSound::InitCom(void)) 00054 return true; 00055 UnGuard 00056 } 00057 00058 bool ExCSound::Load(const char * FileName) 00059 { 00060 Guard(bool ExCSound::Load(const char * FileName)) 00061 return true; 00062 UnGuard 00063 } 00064 00065 void ExCSound::Play(void) 00066 { 00067 Guard(ExCSound::Play(void)) 00068 UnGuard 00069 } 00070 00071 void ExCSound::Stop(void) 00072 { 00073 Guard(ExCSound::Stop(void)) 00074 UnGuard 00075 } 00076 00077 #endif // UNIX_SRC