diff options
Diffstat (limited to 'ace/Multiplexor.h')
-rw-r--r-- | ace/Multiplexor.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/ace/Multiplexor.h b/ace/Multiplexor.h index 6a77bd47d2f..081cbabb2a2 100644 --- a/ace/Multiplexor.h +++ b/ace/Multiplexor.h @@ -5,7 +5,7 @@ // // = LIBRARY // ace -// +// // = FILENAME // Multiplexor.h // @@ -15,20 +15,21 @@ // of need. // // = AUTHOR -// Doug Schmidt -// +// Doug Schmidt +// // ============================================================================ #ifndef ACE_MULTIPLEXOR_H #define ACE_MULTIPLEXOR_H #include "ace/Module.h" -#include "ace/Map_Manager.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) -#pragma once +# pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ +#include "ace/Map_Manager.h" + #if defined (ACE_HAS_THREADS) #if 0 @@ -42,7 +43,7 @@ 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 *); @@ -55,7 +56,7 @@ class ACE_Export ACE_Multiplexor // = DESCRIPTION // public: - // = Constructors and destructors + // = Constructors and destructors ACE_Multiplexor (void); ~ACE_Multiplexor (void); |