From: <de...@us...> - 2003-06-25 20:25:38
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Include In directory sc8-pr-cvs1:/tmp/cvs-serv11469 Modified Files: ScreenInfo.h Log Message: no message Index: ScreenInfo.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/ScreenInfo.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** ScreenInfo.h 19 Jun 2003 18:07:51 -0000 1.7 --- ScreenInfo.h 25 Jun 2003 20:25:34 -0000 1.8 *************** *** 67,71 **** osgText::Text* m_Altitude; osgText::Text* m_GlobalPosition; ! osgText::Text* m_Velocity; protected: ~GeneralStats(){} --- 67,71 ---- osgText::Text* m_Altitude; osgText::Text* m_GlobalPosition; ! osgText::Text* m_Velocity, *m_Magnitude; protected: ~GeneralStats(){} *************** *** 73,77 **** GeneralStats(int posx,int posy); virtual void update(); - }; --- 73,76 ---- *************** *** 80,84 **** { // input device informations ! std::vector<osgText::Text*> m_ObjectStats; protected: ~ObjectStats(){} --- 79,83 ---- { // input device informations ! std::vector<osg::ref_ptr<osgText::Text> > m_ObjectStats; protected: ~ObjectStats(){} *************** *** 86,90 **** ObjectStats(int posx,int posy, simdata::Ref<DynamicObject> const& activeObject); virtual void update(); - }; --- 85,88 ---- |