summaryrefslogtreecommitdiff
path: root/TAO/examples/Simulator/NavWeap.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simulator/NavWeap.idl')
-rw-r--r--TAO/examples/Simulator/NavWeap.idl62
1 files changed, 0 insertions, 62 deletions
diff --git a/TAO/examples/Simulator/NavWeap.idl b/TAO/examples/Simulator/NavWeap.idl
deleted file mode 100644
index caa7c04c969..00000000000
--- a/TAO/examples/Simulator/NavWeap.idl
+++ /dev/null
@@ -1,62 +0,0 @@
-// $Id$
-
-// =========================================================================================================
-//
-// = FILE
-// NavWeap.idl
-//
-// = DESCRIPTION
-// Navigation and Weapon structs for the DOVE/EventService demo.
-
-// = AUTHORS
-// Michael Kircher <mk1@cec.wustl.edu>
-// Modified by
-// Chris Gill <cdgill@cs.wustl.edu>
-// =========================================================================================================
-
-#include "CosTimeBase.idl"
-
-struct Navigation {
- long position_latitude;
- long position_longitude;
- unsigned long altitude;
- long heading;
- long roll;
- long pitch;
- // common part
- double utilization;
- double overhead;
- TimeBase::TimeT arrival_time;
- TimeBase::TimeT deadline_time;
- TimeBase::TimeT completion_time;
- TimeBase::TimeT computation_time;
- unsigned long criticality;
- unsigned long update_data;
-};
-
-
-
-struct Weapons {
-
- unsigned long number_of_weapons;
- string weapon1_identifier;
- unsigned long weapon1_status;
- string weapon2_identifier;
- unsigned long weapon2_status;
- string weapon3_identifier;
- unsigned long weapon3_status;
- string weapon4_identifier;
- unsigned long weapon4_status;
- string weapon5_identifier;
- unsigned long weapon5_status;
- // common part
- double utilization;
- double overhead;
- TimeBase::TimeT arrival_time;
- TimeBase::TimeT deadline_time;
- TimeBase::TimeT completion_time;
- TimeBase::TimeT computation_time;
- unsigned long criticality;
- unsigned long update_data;
-};
-