summaryrefslogtreecommitdiff
path: root/TAO/tao/Invocation.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Invocation.i')
-rw-r--r--TAO/tao/Invocation.i93
1 files changed, 0 insertions, 93 deletions
diff --git a/TAO/tao/Invocation.i b/TAO/tao/Invocation.i
deleted file mode 100644
index 222dc901891..00000000000
--- a/TAO/tao/Invocation.i
+++ /dev/null
@@ -1,93 +0,0 @@
-// This may look like C, but it's really -*- C++ -*-
-//
-// $Id$
-//
-
-ACE_INLINE void
-TAO_GIOP_Invocation::put_param (CORBA::TypeCode_ptr tc,
- void *value,
- CORBA::Environment &env)
-{
- (void) this->out_stream_.encode (tc, value, 0, env);
-}
-
-ACE_INLINE TAO_OutputCDR &
-TAO_GIOP_Invocation::out_stream (void)
-{
- return this->out_stream_;
-}
-
-// ****************************************************************
-
-ACE_INLINE
-TAO_GIOP_Twoway_Invocation::
-TAO_GIOP_Twoway_Invocation (IIOP_Object *data,
- const char *operation,
- TAO_ORB_Core *orb_core)
- : TAO_GIOP_Invocation (data, operation, orb_core),
- inp_stream_ (CDR::DEFAULT_BUFSIZE)
-{
-}
-
-ACE_INLINE void
-TAO_GIOP_Twoway_Invocation::start (CORBA::Environment &env)
-{
- TAO_GIOP_Invocation::start (1, TAO_GIOP::Request, env);
-}
-
-ACE_INLINE void
-TAO_GIOP_Twoway_Invocation::get_value (CORBA::TypeCode_ptr tc,
- void *value,
- CORBA::Environment &env)
-{
- (void) this->inp_stream_.decode (tc, value, 0, env);
-}
-
-ACE_INLINE TAO_InputCDR &
-TAO_GIOP_Twoway_Invocation::inp_stream (void)
-{
- return this->inp_stream_;
-}
-
-// ****************************************************************
-
-ACE_INLINE
-TAO_GIOP_Oneway_Invocation::
-TAO_GIOP_Oneway_Invocation (IIOP_Object *data,
- const char *operation,
- TAO_ORB_Core *orb_core)
- : TAO_GIOP_Invocation (data, operation, orb_core)
-{
-}
-
-ACE_INLINE void
-TAO_GIOP_Oneway_Invocation::start (CORBA::Environment &env)
-{
- TAO_GIOP_Invocation::start (0, TAO_GIOP::Request, env);
-}
-
-ACE_INLINE TAO_GIOP_ReplyStatusType
-TAO_GIOP_Oneway_Invocation::invoke (CORBA::Environment &env)
-{
- return TAO_GIOP_Invocation::invoke (0, env);
-}
-
-// ****************************************************************
-
-ACE_INLINE
-TAO_GIOP_Locate_Request_Invocation::
-TAO_GIOP_Locate_Request_Invocation (IIOP_Object *data,
- TAO_ORB_Core *orb_core)
- : TAO_GIOP_Invocation (data, 0, orb_core),
- inp_stream_ (CDR::DEFAULT_BUFSIZE)
-{
-}
-
-ACE_INLINE void
-TAO_GIOP_Locate_Request_Invocation::start (CORBA::Environment &env)
-{
- TAO_GIOP_Invocation::start (1, TAO_GIOP::LocateRequest, env);
-}
-
-
-