summaryrefslogtreecommitdiff
path: root/TAO/tao/Invocation_Adapter.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Invocation_Adapter.inl')
-rw-r--r--TAO/tao/Invocation_Adapter.inl33
1 files changed, 33 insertions, 0 deletions
diff --git a/TAO/tao/Invocation_Adapter.inl b/TAO/tao/Invocation_Adapter.inl
new file mode 100644
index 00000000000..a3d8dd5eacc
--- /dev/null
+++ b/TAO/tao/Invocation_Adapter.inl
@@ -0,0 +1,33 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+ ACE_INLINE
+ Invocation_Adapter::Invocation_Adapter (
+ CORBA::Object *target,
+ Argument **args,
+ int arg_number,
+ const char *operation,
+ size_t op_len,
+ Collocation_Proxy_Broker *p,
+ Invocation_Type type,
+ Invocation_Mode mode,
+ CORBA::Boolean is_dii_request)
+ : target_ (target)
+ , args_ (args)
+ , number_args_ (arg_number)
+ , operation_ (operation)
+ , op_len_ (op_len)
+ , cpb_ (p)
+ , type_ (type)
+ , mode_ (mode)
+ , is_dii_request_ (is_dii_request)
+ {
+ }
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL