[Gcblue-commits] gcb_wx/include/graphics tcMapObject.h,1.8,1.9 tcMapOverlay.h,1.1,1.2
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-05-08 23:28:12
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17728/include/graphics Modified Files: tcMapObject.h tcMapOverlay.h Log Message: Landing bug fix, changed /gm create to require starting coords, added fuel to air update Index: tcMapOverlay.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMapOverlay.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tcMapOverlay.h 31 Mar 2005 03:51:11 -0000 1.1 --- tcMapOverlay.h 8 May 2005 23:27:56 -0000 1.2 *************** *** 43,46 **** --- 43,50 ---- class tcMapObject; + class tcStream; + class tcCommandStream; + class tcCreateStream; + class tcUpdateStream; *************** *** 62,65 **** --- 66,72 ---- void Redraw(); + virtual tcUpdateStream& operator<<(tcUpdateStream& stream); + virtual tcUpdateStream& operator>>(tcUpdateStream& stream); + tcMapOverlay(wxWindow *parent, const wxPoint& pos, const wxSize& size, Index: tcMapObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMapObject.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** tcMapObject.h 31 Mar 2005 03:51:11 -0000 1.8 --- tcMapObject.h 8 May 2005 23:27:55 -0000 1.9 *************** *** 38,41 **** --- 38,46 ---- class tc3DWindow; + class tcStream; + class tcCommandStream; + class tcCreateStream; + class tcUpdateStream; + namespace MapView { *************** *** 69,72 **** --- 74,80 ---- static void SetMapView(MapView::tcMapView *mv); + virtual tcUpdateStream& operator<<(tcUpdateStream& stream); + virtual tcUpdateStream& operator>>(tcUpdateStream& stream); + tcMapObject(); tcMapObject(double x, double y, bool useRel = false); *************** *** 97,100 **** --- 105,111 ---- virtual void Draw(tc3DWindow* host); + virtual tcUpdateStream& operator<<(tcUpdateStream& stream); + virtual tcUpdateStream& operator>>(tcUpdateStream& stream); + tcMapTextObject(); tcMapTextObject(const std::string& text, double x, double y, bool useRel = false); |