diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-12-23 09:49:13 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-12-23 09:49:13 +0000 |
commit | e46d44028425a5bb26b2ed2806cfc2daa9b9910a (patch) | |
tree | 17ced2799edf936658350f50a6da10ccfbb4c301 /TAO/tests/Param_Test/bd_struct_seq.cpp | |
parent | f54b73275542023f8453dbb4f6467c6d9e2038e3 (diff) | |
download | ATCD-e46d44028425a5bb26b2ed2806cfc2daa9b9910a.tar.gz |
Added dii_req_invoke method.
Diffstat (limited to 'TAO/tests/Param_Test/bd_struct_seq.cpp')
-rw-r--r-- | TAO/tests/Param_Test/bd_struct_seq.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/TAO/tests/Param_Test/bd_struct_seq.cpp b/TAO/tests/Param_Test/bd_struct_seq.cpp index 1835e1f0064..8f99ebcde40 100644 --- a/TAO/tests/Param_Test/bd_struct_seq.cpp +++ b/TAO/tests/Param_Test/bd_struct_seq.cpp @@ -49,6 +49,12 @@ Test_Bounded_Struct_Sequence::opname (void) const return this->opname_; } +void +Test_Bounded_Struct_Sequence::dii_req_invoke (CORBA::Request *req) +{ + req->invoke (); +} + int Test_Bounded_Struct_Sequence::init_parameters (Param_Test_ptr objref, CORBA::Environment &env) @@ -96,7 +102,7 @@ Test_Bounded_Struct_Sequence::add_args (CORBA::NVList_ptr param_list, CORBA::NVList_ptr retval, CORBA::Environment &env) { - CORBA::Any in_arg (Param_Test::_tc_Bounded_StructSeq, + CORBA::Any in_arg (Param_Test::_tc_Bounded_StructSeq, &this->in_, 0); @@ -224,4 +230,3 @@ Test_Bounded_Struct_Sequence::print_sequence (const Param_Test::Bounded_StructSe vs.l, vs.c, vs.s, vs.o, vs.f, vs.b, vs.d)); } } - |