[Gcblue-commits] gcb_wx/include/common simmath.h,1.30,1.31 tcStream.h,1.10,1.11
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-06-22 01:22:04
|
Update of /cvsroot/gcblue/gcb_wx/include/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2118/include/common Modified Files: simmath.h tcStream.h Log Message: Misc housekeeping, updates for infrared and anti-radiation seekers, more info for multiplayer airfield units, icon gui enhancements Index: tcStream.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcStream.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** tcStream.h 5 May 2005 02:14:17 -0000 1.10 --- tcStream.h 22 Jun 2005 01:21:25 -0000 1.11 *************** *** 61,64 **** --- 61,65 ---- tcStream& operator<<(unsigned short& val); tcStream& operator<<(unsigned int& val); + tcStream& operator<<(unsigned long& val); tcStream& operator<<(float& val); tcStream& operator<<(double& val); *************** *** 75,78 **** --- 76,80 ---- tcStream& operator>>(unsigned short& val); tcStream& operator>>(unsigned int& val); + tcStream& operator>>(unsigned long& val); tcStream& operator>>(float& val); tcStream& operator>>(double& val); Index: simmath.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/common/simmath.h,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** simmath.h 11 Jun 2005 21:01:42 -0000 1.30 --- simmath.h 22 Jun 2005 01:21:25 -0000 1.31 *************** *** 75,78 **** --- 75,81 ---- }; + /** + * + */ enum teAffiliation { *************** *** 135,138 **** --- 138,143 ---- tcStream& operator<<(tcStream& stream); tcStream& operator>>(tcStream& stream); + + tcTrack& operator==(const tcTrack& src); }; |