[Gcblue-commits] gcb_wx/include/common tcStream.h,1.4,1.5
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2004-05-08 22:20:38
|
Update of /cvsroot/gcblue/gcb_wx/include/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28993/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.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tcStream.h 1 May 2004 21:49:23 -0000 1.4 --- tcStream.h 8 May 2004 22:20:27 -0000 1.5 *************** *** 42,45 **** --- 42,46 ---- void read(char* buff, std::streamsize count); size_t size(); + void skip(unsigned char count); void write(const char* buff, std::streamsize count); *************** *** 58,61 **** --- 59,63 ---- tcStream& operator<<(double& val); tcStream& operator<<(std::string& val); + tcStream& operator<<(tcStream& stream); /// read operators *************** *** 70,73 **** --- 72,76 ---- tcStream& operator>>(double& val); tcStream& operator>>(std::string& val); + tcStream& operator>>(tcStream& stream); tcStream(const char* data, std::streamsize count); ///< creates stream from char array |