summaryrefslogtreecommitdiff
path: root/TAO/tao/LocateRequest_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/LocateRequest_Invocation.h
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/LocateRequest_Invocation.h')
-rw-r--r--TAO/tao/LocateRequest_Invocation.h84
1 files changed, 0 insertions, 84 deletions
diff --git a/TAO/tao/LocateRequest_Invocation.h b/TAO/tao/LocateRequest_Invocation.h
deleted file mode 100644
index 40b213eef37..00000000000
--- a/TAO/tao/LocateRequest_Invocation.h
+++ /dev/null
@@ -1,84 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file LocateRequest_Invocation.h
- *
- * $Id$
- *
- *
- * @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
- */
-//=============================================================================
-
-#ifndef TAO_LOCATEREQUEST_INVOCATION_H
-#define TAO_LOCATEREQUEST_INVOCATION_H
-
-#include /**/ "ace/pre.h"
-#include "ace/Global_Macros.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/Synch_Invocation.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-class TAO_Synch_Reply_Dispatcher;
-
-namespace CORBA
-{
- class SystemException;
-}
-
-namespace TAO
-{
- class Profile_Transport_Resolver;
-
- /**
- * @class LocateRequest_Invocation
- *
- * @brief Object created by TAO::LocateRequest_Invocation_Adapter to
- * create and send LocateRequest invocation.
- *
- */
- class TAO_Export LocateRequest_Invocation
- : protected Synch_Twoway_Invocation
- {
- public:
- /**
- * @param otarget The target on which this invocation was
- * started.
- *
- * @param resolver Container of the profile and transport on
- * which this invocation is on
- *
- * @param detail Operation details of the invocation on @a
- * target. This is of no practical importance since it is not used
- * in this class. This is just to keep our base class happy.
- *
- */
- LocateRequest_Invocation (
- CORBA::Object_ptr otarget,
- Profile_Transport_Resolver &resolver,
- TAO_Operation_Details &detail);
-
- /// Start the invocation.
- Invocation_Status invoke (ACE_Time_Value *max_wait_time
- ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::Exception));
-
- private:
- /// Helper to check the reply status
- Invocation_Status check_reply (TAO_Synch_Reply_Dispatcher &rd
- ACE_ENV_ARG_DECL);
-
- };
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#include /**/ "ace/post.h"
-
-#endif /*TAO_LOCATEREQUEST_INVOCATION_H*/