[Gcblue-commits] gcb_wx/include/common tcStream.h,1.9,1.10
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-05-05 02:14:28
|
Update of /cvsroot/gcblue/gcb_wx/include/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv722/include/common Modified Files: tcStream.h Log Message: Index: tcStream.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcStream.h,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** tcStream.h 29 Apr 2005 18:52:01 -0000 1.9 --- tcStream.h 5 May 2005 02:14:17 -0000 1.10 *************** *** 49,52 **** --- 49,55 ---- void SetDetailLevel(int dl); + const std::string& GetMetaString() const; + void SetMetaString(const std::string& s); + /// write operators tcStream& operator<<(int& val); *************** *** 82,85 **** --- 85,89 ---- private: int detailLevel; + std::string metaString; ///< additional data }; |