Update of /cvsroot/gcblue/gcb_wx/include/scriptinterface
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv9232/include/scriptinterface
Modified Files:
tcSimPythonInterface.h tcTrackInterface.h
Log Message:
Index: tcTrackInterface.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/scriptinterface/tcTrackInterface.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** tcTrackInterface.h 22 Mar 2006 01:23:29 -0000 1.9
--- tcTrackInterface.h 1 Dec 2006 03:39:53 -0000 1.10
***************
*** 49,53 ****
static void SetTrack(long anID) {mnTrackID = anID;}
! static void AttachSensorMap(tcAllianceSensorMap *apSM);
tcTrackInterface();
virtual ~tcTrackInterface();
--- 49,55 ----
static void SetTrack(long anID) {mnTrackID = anID;}
! static void SetSensorMap(tcAllianceSensorMap *apSM);
! static tcAllianceSensorMap* GetSensorMap();
!
tcTrackInterface();
virtual ~tcTrackInterface();
Index: tcSimPythonInterface.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/scriptinterface/tcSimPythonInterface.h,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** tcSimPythonInterface.h 24 Sep 2006 19:50:19 -0000 1.33
--- tcSimPythonInterface.h 1 Dec 2006 03:39:53 -0000 1.34
***************
*** 109,113 ****
void AttachMenu(tcMenu *apMenu) {tcMenuInterface::AttachMenu(apMenu);}
void AttachPanel(tcPanel *apPanel) {tcPanelInterface::AttachPanel(apPanel);}
! void AttachSensorMap(tcAllianceSensorMap *apSM) {tcTrackInterface::AttachSensorMap(apSM);}
void AttachSimState(tcSimState *apSimState);
--- 109,113 ----
void AttachMenu(tcMenu *apMenu) {tcMenuInterface::AttachMenu(apMenu);}
void AttachPanel(tcPanel *apPanel) {tcPanelInterface::AttachPanel(apPanel);}
! void AttachSensorMap(tcAllianceSensorMap *apSM) {tcTrackInterface::SetSensorMap(apSM);}
void AttachSimState(tcSimState *apSimState);
***************
*** 215,218 ****
--- 215,219 ----
struct ClientCommand
{
+ char menuMode;
std::vector<long> idList;
std::string commandText;
|