summaryrefslogtreecommitdiff
path: root/TAO/tao/Messaging/Asynch_Invocation.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Messaging/Asynch_Invocation.h')
-rw-r--r--TAO/tao/Messaging/Asynch_Invocation.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/TAO/tao/Messaging/Asynch_Invocation.h b/TAO/tao/Messaging/Asynch_Invocation.h
deleted file mode 100644
index aaa7f4a677f..00000000000
--- a/TAO/tao/Messaging/Asynch_Invocation.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Asynch_Invocation.h
- *
- * $Id$
- *
- * @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
- */
-//=============================================================================
-
-#ifndef TAO_MESSAGING_ASYNCH_INVOCATION_H
-#define TAO_MESSAGING_ASYNCH_INVOCATION_H
-#include "ace/pre.h"
-
-#include "tao/Synch_Invocation.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/Global_Macros.h"
-
-class TAO_Operation_Details;
-class TAO_InputCDR;
-class ACE_Time_Value;
-class TAO_Asynch_Reply_Dispatcher;
-
-namespace CORBA
-{
- class SystemException;
-}
-
-namespace TAO
-{
- class Profile_Transport_Resolver;
-
- class TAO_Export Asynch_Remote_Invocation : protected Synch_Twoway_Invocation
- {
- public:
- Asynch_Remote_Invocation (CORBA::Object_ptr otarget,
- Profile_Transport_Resolver &resolver,
- TAO_Operation_Details &detail,
- TAO_Asynch_Reply_Dispatcher *rd,
- bool response_expected = true);
-
- Invocation_Status remote_invocation (ACE_Time_Value *value
- ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::Exception));
-
- private:
- TAO_Asynch_Reply_Dispatcher *rd_;
- };
-}
-
-
-#include "ace/post.h"
-#endif /*TAO_SYNCH_INVOCATION_H*/