diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-05-05 12:53:55 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-05-05 12:53:55 +0000 |
commit | 3c61e20f081bf6fbab6d3483e5e7f71cb91c4974 (patch) | |
tree | 4d687030d8e848eb2c325e8234fb807f578df890 /ace/Multiplexor.h | |
parent | 65ce81267a19f490a22443567c75276fc864cbd2 (diff) | |
download | ATCD-RepositoryManager.tar.gz |
This commit was manufactured by cvs2svn to create branchRepositoryManager
'RepositoryManager'.
Diffstat (limited to 'ace/Multiplexor.h')
-rw-r--r-- | ace/Multiplexor.h | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/ace/Multiplexor.h b/ace/Multiplexor.h deleted file mode 100644 index 12336afaac9..00000000000 --- a/ace/Multiplexor.h +++ /dev/null @@ -1,81 +0,0 @@ -/* -*- C++ -*- */ - -//============================================================================= -/** - * @file Multiplexor.h - * - * $Id$ - * - * Define the ACE_Driver and ACE_Multiplexor container classes. - * Note that these classes have never been implemented due to lack - * of need. - * - * - * @author Doug Schmidt - */ -//============================================================================= - - -#ifndef ACE_MULTIPLEXOR_H -#define ACE_MULTIPLEXOR_H -#include /**/ "ace/pre.h" - -#include "ace/Module.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include "ace/Map_Manager.h" - -#if defined (ACE_HAS_THREADS) - -#if 0 -/** - * @class ACE_Driver - * - * - */ -class ACE_Export ACE_Driver -{ -public: - ACE_Driver (void); - ~ACE_Driver (void); - - virtual int link_from_below (ACE_Module *mod); - virtual ACE_Module *alloc_module (ACE_Driver *) = 0; - virtual int unlink_from_below (ACE_Module *); -}; - -/** - * @class ACE_Multiplexor - * - * - */ -class ACE_Export ACE_Multiplexor -{ -public: - // = Constructors and destructors - ACE_Multiplexor (void); - ~ACE_Multiplexor (void); - - virtual int link_from_above (ACE_Driver &ld); - virtual int link_from_above (ACE_Multiplexor &lm); - virtual int link_from_below (ACE_Module *mod); - virtual ACE_Module *alloc_lower_module (ACE_Multiplexor *) = 0; - virtual ACE_Module *alloc_upper_module (ACE_Multiplexor *) = 0; - - virtual int unlink_from_above (ACE_Driver &ld); - virtual int unlink_from_above (ACE_Multiplexor &lm); - virtual int unlink_from_below (ACE_Module *mod); -}; - -#if defined (__ACE_INLINE__) -#include "ace/Multiplexor.inl" -#endif /* __ACE_INLINE__ */ - -#endif /* 0 */ - -#endif /* ACE_HAS_THREADS */ -#include /**/ "ace/post.h" -#endif /* ACE_MULTIPLEXOR_H */ |