[Gcblue-commits] gcb_wx/src/common tcSound.cpp,1.31,1.32 tcStream.cpp,1.9,1.10
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-05-05 02:15:32
|
Update of /cvsroot/gcblue/gcb_wx/src/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv777/src/common Modified Files: tcSound.cpp tcStream.cpp Log Message: Index: tcSound.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/common/tcSound.cpp,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** tcSound.cpp 8 Apr 2005 01:54:11 -0000 1.31 --- tcSound.cpp 5 May 2005 02:14:51 -0000 1.32 *************** *** 105,109 **** effectMap["Thuck"] = LoadSample("Thuck.wav"); effectMap["Explosion2"] = LoadSample("Explosion2.wav"); ! effectMap["Welcome"] = LoadSample("Welcome.wav"); effectMap["jetlaunch"] = LoadSample("jetlaunch.wav"); effectMap["MutedBeep"] = LoadSample("MutedBeep.wav"); --- 105,109 ---- effectMap["Thuck"] = LoadSample("Thuck.wav"); effectMap["Explosion2"] = LoadSample("Explosion2.wav"); ! effectMap["Welcome"] = LoadSample("NavyWhistle.wav"); effectMap["jetlaunch"] = LoadSample("jetlaunch.wav"); effectMap["MutedBeep"] = LoadSample("MutedBeep.wav"); Index: tcStream.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/common/tcStream.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** tcStream.cpp 29 Apr 2005 18:52:53 -0000 1.9 --- tcStream.cpp 5 May 2005 02:14:51 -0000 1.10 *************** *** 45,49 **** */ tcStream::tcStream() ! : detailLevel(0) { } --- 45,50 ---- */ tcStream::tcStream() ! : detailLevel(0), ! metaString("") { } *************** *** 118,121 **** --- 119,132 ---- } + const std::string& tcStream::GetMetaString() const + { + return metaString; + } + + void tcStream::SetMetaString(const std::string& s) + { + metaString = s; + } + /*** write operators ***/ |