diff options
author | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-11 01:49:53 +0000 |
---|---|---|
committer | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-04-11 01:49:53 +0000 |
commit | acdf0383108f3c27b1d923a56f1da7bf76208b89 (patch) | |
tree | 2a94008bfa1638587fb8b9ef0ab0226c221eae0f /TAO/tests/Param_Test/param_test_i.h | |
parent | 12b94ed546199eca99a37828312c88cb9955b266 (diff) | |
download | ATCD-acdf0383108f3c27b1d923a56f1da7bf76208b89.tar.gz |
Added test code for Multi_Dimensional arrays
Diffstat (limited to 'TAO/tests/Param_Test/param_test_i.h')
-rw-r--r-- | TAO/tests/Param_Test/param_test_i.h | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/TAO/tests/Param_Test/param_test_i.h b/TAO/tests/Param_Test/param_test_i.h index e795e6aa869..77da2bb01fd 100644 --- a/TAO/tests/Param_Test/param_test_i.h +++ b/TAO/tests/Param_Test/param_test_i.h @@ -228,14 +228,22 @@ public: CORBA::ULong_out s3, CORBA::Environment &env); - void shutdown (CORBA::Environment &env); - virtual Param_Test::Big_Union* - test_big_union (const Param_Test::Big_Union& u1, - Param_Test::Big_Union& u2, - Param_Test::Big_Union_out u3, - CORBA::Environment &env); + test_big_union (const Param_Test::Big_Union& u1, + Param_Test::Big_Union& u2, + Param_Test::Big_Union_out u3, + CORBA::Environment &env); + + // Test for multi dimensional arrays + virtual Param_Test::Multdim_Array_slice * + test_multdim_array (const Param_Test::Multdim_Array, + Param_Test::Multdim_Array , + Param_Test::Multdim_Array_out , + CORBA::Environment &); + + void shutdown (CORBA::Environment &env); + private: Coffee_i obj_; // the coffee object reference we maintain |