Update of /cvsroot/gcblue/gcb_wx/include/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27186/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.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** tcStream.h 16 Apr 2005 20:43:55 -0000 1.8
--- tcStream.h 29 Apr 2005 18:52:01 -0000 1.9
***************
*** 54,57 ****
--- 54,58 ----
tcStream& operator<<(short& val);
tcStream& operator<<(bool& val);
+ tcStream& operator<<(char& val);
tcStream& operator<<(unsigned char& val);
tcStream& operator<<(unsigned short& val);
***************
*** 67,70 ****
--- 68,72 ----
tcStream& operator>>(short& val);
tcStream& operator>>(bool& val);
+ tcStream& operator>>(char& val);
tcStream& operator>>(unsigned char& val);
tcStream& operator>>(unsigned short& val);
|