Go to the documentation of this file.00001
00002
00003
00004
00005 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00006
00007 namespace TAO
00008 {
00009 ACE_INLINE
00010 Invocation_Adapter::Invocation_Adapter (
00011 CORBA::Object *target,
00012 Argument **args,
00013 int arg_number,
00014 const char *operation,
00015 size_t op_len,
00016 Collocation_Proxy_Broker *p,
00017 Invocation_Type type,
00018 Invocation_Mode mode)
00019 : target_ (target)
00020 , args_ (args)
00021 , number_args_ (arg_number)
00022 , operation_ (operation)
00023 , op_len_ (op_len)
00024 , cpb_ (p)
00025 , type_ (type)
00026 , mode_ (mode)
00027 {
00028 }
00029 }
00030
00031 TAO_END_VERSIONED_NAMESPACE_DECL