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.i75
1 files changed, 0 insertions, 75 deletions
diff --git a/TAO/tao/Invocation.i b/TAO/tao/Invocation.i
deleted file mode 100644
index 4e5db7c5a05..00000000000
--- a/TAO/tao/Invocation.i
+++ /dev/null
@@ -1,75 +0,0 @@
-// This may look like C, but it's really -*- C++ -*-
-//
-// $Id$
-//
-
-ACE_INLINE IOP::ServiceContextList &
-TAO_GIOP_Invocation::service_info (void)
-{
- return this->service_info_;
-}
-
-ACE_INLINE CORBA::ULong
-TAO_GIOP_Invocation::request_id (void)
-{
- return this->request_id_;
-}
-
-ACE_INLINE TAO_OutputCDR &
-TAO_GIOP_Invocation::out_stream (void)
-{
- return this->out_stream_;
-}
-
-// ****************************************************************
-
-ACE_INLINE
-TAO_GIOP_Twoway_Invocation::
-TAO_GIOP_Twoway_Invocation (TAO_Stub *stub,
- const char *operation,
- TAO_ORB_Core *orb_core)
- : TAO_GIOP_Invocation (stub, operation, orb_core),
- rd_ (orb_core, this->service_info_)
-{
-}
-
-ACE_INLINE TAO_InputCDR &
-TAO_GIOP_Twoway_Invocation::inp_stream (void)
-{
- return this->rd_.reply_cdr ();
-}
-
-// ****************************************************************
-
-ACE_INLINE
-TAO_GIOP_Oneway_Invocation::
-TAO_GIOP_Oneway_Invocation (TAO_Stub *stub,
- const char *operation,
- TAO_ORB_Core *orb_core)
- : TAO_GIOP_Invocation (stub, operation, orb_core)
-{
-}
-
-ACE_INLINE int
-TAO_GIOP_Oneway_Invocation::invoke (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- return TAO_GIOP_Invocation::invoke (0, ACE_TRY_ENV);
-}
-
-// *********************************************************************
-
-ACE_INLINE
-TAO_GIOP_Locate_Request_Invocation::
-TAO_GIOP_Locate_Request_Invocation (TAO_Stub *stub,
- TAO_ORB_Core *orb_core)
- : TAO_GIOP_Invocation (stub, 0, orb_core),
- rd_ (orb_core, this->service_info_)
-{
-}
-
-ACE_INLINE TAO_InputCDR &
-TAO_GIOP_Locate_Request_Invocation::inp_stream (void)
-{
- return this->rd_.reply_cdr ();
-}