[Gcblue-commits] gcb_wx/include/scriptinterface tcTrackInterface.h,1.5,1.6
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2004-11-06 15:14:34
|
Update of /cvsroot/gcblue/gcb_wx/include/scriptinterface In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31472/include/scriptinterface Modified Files: tcTrackInterface.h Log Message: Added optical sensor model, fixed generic model display for sensor tracks Index: tcTrackInterface.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/scriptinterface/tcTrackInterface.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** tcTrackInterface.h 1 Nov 2004 03:17:16 -0000 1.5 --- tcTrackInterface.h 6 Nov 2004 15:13:40 -0000 1.6 *************** *** 28,33 **** #include "gctypes.h" ! namespace Sensor { class tcAllianceSensorMap; } --- 28,35 ---- #include "gctypes.h" ! namespace Sensor ! { class tcAllianceSensorMap; + class tcSensorMapTrack; } *************** *** 46,57 **** void DeclareHostile(); void DropTrack(); ! static void SetTrack(unsigned int anID) {mnTrackID = anID;} static void AttachSensorMap(tcAllianceSensorMap *apSM); tcTrackInterface(); virtual ~tcTrackInterface(); private: ! static unsigned int mnTrackID; static tcAllianceSensorMap *mpSensorMap; }; --- 48,62 ---- void DeclareHostile(); void DropTrack(); + void UpdateAmbiguityList(); ! static void SetTrack(long anID) {mnTrackID = anID;} static void AttachSensorMap(tcAllianceSensorMap *apSM); tcTrackInterface(); virtual ~tcTrackInterface(); private: ! static long mnTrackID; static tcAllianceSensorMap *mpSensorMap; + + tcSensorMapTrack* GetTrack(); }; |