summaryrefslogtreecommitdiff
path: root/TAO/tao/Bind_Dispatcher_Guard.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
commit8008dd09ccf88d4edef237a184a698cac42f2952 (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/Bind_Dispatcher_Guard.h
parent13d6e89af439164c0ade48e6f5c3e9b3f971e8c9 (diff)
downloadATCD-8008dd09ccf88d4edef237a184a698cac42f2952.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/Bind_Dispatcher_Guard.h')
-rw-r--r--TAO/tao/Bind_Dispatcher_Guard.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/TAO/tao/Bind_Dispatcher_Guard.h b/TAO/tao/Bind_Dispatcher_Guard.h
deleted file mode 100644
index ae86b126b92..00000000000
--- a/TAO/tao/Bind_Dispatcher_Guard.h
+++ /dev/null
@@ -1,68 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Bind_Dispatcher_Guard.h
- *
- * $Id$
- *
- * @author Carlos O'Ryan <coryan@uci.edu>
- * @author Chad Elliott <elliott_c@ociweb.com>
- */
-//=============================================================================
-
-#ifndef TAO_BIND_DISPATCHER_GUARD_H
-#define TAO_BIND_DISPATCHER_GUARD_H
-
-#include /**/ "ace/pre.h"
-
-#include "tao/Basic_Types.h"
-#include "tao/TAO_Export.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-class TAO_Reply_Dispatcher;
-class TAO_Transport_Mux_Strategy;
-
-class TAO_Export TAO_Bind_Dispatcher_Guard
-{
-public:
- TAO_Bind_Dispatcher_Guard (CORBA::ULong request_id,
- TAO_Reply_Dispatcher* rd,
- TAO_Transport_Mux_Strategy* tms);
-
- ~TAO_Bind_Dispatcher_Guard (void);
-
- /// Returns 0 if succesful and non-zero otherwise.
- int unbind_dispatcher (void);
-
- /// State information
- enum
- {
- /// Unbind the dispatcher
- UNBIND = 0,
- /// Do not unbind dispatcher
- NO_UNBIND
- };
-
- /// Get status
- int status (void) const;
-
- /// Set status
- void status (int status);
-
-private:
- int status_;
- CORBA::ULong request_id_;
- TAO_Reply_Dispatcher* rd_;
- TAO_Transport_Mux_Strategy* tms_;
-};
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#if defined (__ACE_INLINE__)
-# include "tao/Bind_Dispatcher_Guard.i"
-#endif /* __ACE_INLINE__ */
-
-#include /**/ "ace/post.h"
-#endif