summaryrefslogtreecommitdiff
path: root/TAO/examples
diff options
context:
space:
mode:
authormk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-26 18:05:52 +0000
committermk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-26 18:05:52 +0000
commit27e6ed5a0eb169aabd96b3bacba09f8441bfb618 (patch)
tree694cb2fa5f3c9ac167596394f36a2bf316ee1fef /TAO/examples
parent9c4b1cd963de54c9a2686fedaf45eb7a54f70ad1 (diff)
downloadATCD-27e6ed5a0eb169aabd96b3bacba09f8441bfb618.tar.gz
small changes
Diffstat (limited to 'TAO/examples')
-rw-r--r--TAO/examples/Simulator/DOVEMIB/any_test_i.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/TAO/examples/Simulator/DOVEMIB/any_test_i.cpp b/TAO/examples/Simulator/DOVEMIB/any_test_i.cpp
index 0df0ea2e8ec..358dd2c7029 100644
--- a/TAO/examples/Simulator/DOVEMIB/any_test_i.cpp
+++ b/TAO/examples/Simulator/DOVEMIB/any_test_i.cpp
@@ -39,6 +39,15 @@ Any_Test_i::try_an_any (const CORBA::Any &a, CORBA::Environment &env)
AnyAnalyser anyAnalyser_ = AnyAnalyser ("stdout");
TAO_CHECK_ENV;
+
+ Weapons *weapons_ = (Weapons *)a.value();
+
+ cout << "Adr weapon5 status:" << &(weapons_->weapon5_status) << endl;
+ cout << "Adr first double: " << &(weapons_->utilization) << endl;
+ cout << "Adr first double: " << &(weapons_->overhead) << endl;
+ cout << "Adr util: " << &(weapons_->utilization) << endl;
+ cout << "utilization: " << weapons_->utilization << endl;
+ cout << "ArrTime: " << weapons_->arrival_time << endl;
anyAnalyser_.printAny (a);
}