summaryrefslogtreecommitdiff
path: root/TAO/tao/DynamicInterface/DII_Invocation.h
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/DynamicInterface/DII_Invocation.h
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/DynamicInterface/DII_Invocation.h')
-rw-r--r--TAO/tao/DynamicInterface/DII_Invocation.h122
1 files changed, 0 insertions, 122 deletions
diff --git a/TAO/tao/DynamicInterface/DII_Invocation.h b/TAO/tao/DynamicInterface/DII_Invocation.h
deleted file mode 100644
index ba3a5a6be66..00000000000
--- a/TAO/tao/DynamicInterface/DII_Invocation.h
+++ /dev/null
@@ -1,122 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file DII_Invocation.h
- *
- * $Id$
- *
- * @brief The DII invocation classes.
- *
- * @author Carlos O'Ryan <coryan@cs.wustl.edu>
- * @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
- * @author Jeff Parsons <parsons@cs.wustl.edu>
- */
-//=============================================================================
-
-#ifndef TAO_DII_INVOCATION_H
-#define TAO_DII_INVOCATION_H
-
-#include /**/ "ace/pre.h"
-
-#include "tao/DynamicInterface/dynamicinterface_export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/Synch_Invocation.h"
-#include "tao/Messaging/Asynch_Invocation.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-class TAO_DII_Deferred_Reply_Dispatcher;
-
-namespace Dynamic
-{
- class ParameterList;
-}
-
-namespace TAO
-{
- /**
- */
- class TAO_DynamicInterface_Export DII_Invocation:
- public Synch_Twoway_Invocation
- {
- public:
- friend class DII_Invocation_Adapter;
-
- DII_Invocation (CORBA::Object_ptr otarget,
- Profile_Transport_Resolver &resolver,
- TAO_Operation_Details &detail,
- CORBA::ExceptionList *excp,
- CORBA::Request_ptr req,
- bool response_expected = true);
-
-#if TAO_HAS_INTERCEPTORS ==1
- virtual Dynamic::ParameterList *arguments (ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException));
-#endif /*TAO_HAS_INTERCEPTORS == 1*/
-
- Invocation_Status remote_invocation (
- ACE_Time_Value *max_wait_time
- ACE_ENV_ARG_DECL
- )
- ACE_THROW_SPEC ((CORBA::Exception));
-
- virtual Invocation_Status handle_user_exception (
- TAO_InputCDR &cdr
- ACE_ENV_ARG_DECL
- )
- ACE_THROW_SPEC ((CORBA::Exception));
- private:
-
- CORBA::ExceptionList *excp_list_;
-
- /// Back pointer to the DII request that created us.
- CORBA::Request_ptr host_;
-
- };
-
-
- /*
- *
- */
- class TAO_DynamicInterface_Export DII_Deferred_Invocation
- : public Asynch_Remote_Invocation
- {
- public:
- friend class DII_Deferred_Invocation_Adapter;
-
- DII_Deferred_Invocation (CORBA::Object_ptr otarget,
- Profile_Transport_Resolver &resolver,
- TAO_Operation_Details &detail,
- TAO_DII_Deferred_Reply_Dispatcher *rd,
- CORBA::Request_ptr req,
- bool response_expected = true);
-
-#if TAO_HAS_INTERCEPTORS ==1
- virtual Dynamic::ParameterList *arguments (ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException));
-#endif /*TAO_HAS_INTERCEPTORS == 1*/
-
- Invocation_Status remote_invocation (
- ACE_Time_Value *max_wait_time
- ACE_ENV_ARG_DECL
- )
- ACE_THROW_SPEC ((CORBA::Exception));
-
- private:
-
- /// Back pointer to the DII request that created us.
- CORBA::Request_ptr host_;
-
- };
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#include /**/ "ace/post.h"
-
-#endif /* TAO_DII_INVOCATION_H */