diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-04 19:43:46 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-04 19:43:46 +0000 |
commit | b5cfcf6357cbd9d0ec1a333e689915ef10b2a4c3 (patch) | |
tree | 8d387a305150c2802ef2381aea0e6770c889f2be /TAO/tests/Param_Test/param_test_i.h | |
parent | 1e34458c51905bb20aec21de4cd7dd9ae074c662 (diff) | |
download | ATCD-b5cfcf6357cbd9d0ec1a333e689915ef10b2a4c3.tar.gz |
ChangeLogTag:Fri Jun 4 14:40:48 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tests/Param_Test/param_test_i.h')
-rw-r--r-- | TAO/tests/Param_Test/param_test_i.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/TAO/tests/Param_Test/param_test_i.h b/TAO/tests/Param_Test/param_test_i.h index a4ef2abd098..7095a182d41 100644 --- a/TAO/tests/Param_Test/param_test_i.h +++ b/TAO/tests/Param_Test/param_test_i.h @@ -52,7 +52,7 @@ class Param_Test_i : public POA_Param_Test // Implementation of the Param_Test test suite. public: Param_Test_i (const char *coffee_name, - const char *obj_name = 0); + CORBA::ORB_ptr orb); // Constructor ~Param_Test_i (void); @@ -241,7 +241,7 @@ public: Param_Test::Big_Union_out u3, CORBA::Environment &env); - virtual CORBA::Any* + virtual CORBA::Any* test_complex_any (const CORBA::Any &a1, CORBA::Any &a2, CORBA::Any_out a3, @@ -254,11 +254,11 @@ public: Param_Test::Multdim_Array , Param_Test::Multdim_Array_out , CORBA::Environment &); - + #endif void shutdown (CORBA::Environment &env); - + private: Coffee_i obj_; // the coffee object reference we maintain @@ -266,6 +266,8 @@ private: int test_exception_count_; // Count the number of calls to test_exception() so we can throw // every 3 calls or so. + + CORBA::ORB_var orb_; }; #endif /* PARAM_TEST_I_H */ |