summaryrefslogtreecommitdiff
path: root/TAO/tao/LF_Event_Binder.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/LF_Event_Binder.h
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/LF_Event_Binder.h')
-rw-r--r--TAO/tao/LF_Event_Binder.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/TAO/tao/LF_Event_Binder.h b/TAO/tao/LF_Event_Binder.h
deleted file mode 100644
index f6dcac517ef..00000000000
--- a/TAO/tao/LF_Event_Binder.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file LF_Event_Binder.h
- *
- * $Id$
- *
- * @author Carlos O'Ryan <coryan@uci.edu>
- */
-//=============================================================================
-
-#ifndef TAO_LF_EVENT_BINDER_H
-#define TAO_LF_EVENT_BINDER_H
-
-#include /**/ "ace/pre.h"
-
-#include "tao/LF_Event.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-class TAO_LF_Follower;
-
-/**
- * @brief Implement an auto_ptr-like class for the TAO_LF_Followers
- * allocated via a TAO_Leader_Follower set.
- *
- * The Leader/Follower set is a factory for TAO_LF_Follower objects
- */
-class TAO_Export TAO_LF_Event_Binder
-{
-public:
- /// Constructor
- TAO_LF_Event_Binder (TAO_LF_Event *event,
- TAO_LF_Follower *folloer);
-
- /// Destructor
- ~TAO_LF_Event_Binder (void);
-
-private:
- /// Keep a reference to the leader follower
- TAO_LF_Event * const event_;
-};
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#if defined (__ACE_INLINE__)
-# include "tao/LF_Event_Binder.inl"
-#endif /* __ACE_INLINE__ */
-
-#include /**/ "ace/post.h"
-
-#endif /* TAO_LF_EVENT_BINDER_H */