summaryrefslogtreecommitdiff
path: root/ace/Multiplexor.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-21 19:26:46 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-21 19:26:46 +0000
commit9e9254f32711d4ecf1e3f71b54982eaf6845388e (patch)
tree760551d54bece3e52d2f1cd3d05b26d9c1c1439b /ace/Multiplexor.h
parent4ecd5d0edb663fdba4935912ccdbbf79a66482ae (diff)
downloadATCD-9e9254f32711d4ecf1e3f71b54982eaf6845388e.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Multiplexor.h')
-rw-r--r--ace/Multiplexor.h22
1 files changed, 12 insertions, 10 deletions
diff --git a/ace/Multiplexor.h b/ace/Multiplexor.h
index 960d67e371e..074601f1890 100644
--- a/ace/Multiplexor.h
+++ b/ace/Multiplexor.h
@@ -10,7 +10,10 @@
// = FILENAME
// Multiplexor.h
//
-// Define the Driver and ACE_Multiplexor container classes.
+// = DESCRIPTION
+// 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
@@ -27,41 +30,40 @@
#if defined (ACE_HAS_THREADS)
#if 0
-class Driver
+class ACE_Export ACE_Driver
+{
// = TITLE
//
//
// = DESCRIPTION
//
-{
public:
- Driver (void);
- ~Driver (void);
+ ACE_Driver (void);
+ ~ACE_Driver (void);
virtual int link_from_below (ACE_Module *mod);
- virtual ACE_Module *alloc_module (Driver *) = 0;
+ virtual ACE_Module *alloc_module (ACE_Driver *) = 0;
virtual int unlink_from_below (ACE_Module *);
};
class ACE_Export ACE_Multiplexor
+{
// = TITLE
//
- //
// = DESCRIPTION
//
-{
public:
// = Constructors and destructors
ACE_Multiplexor (void);
~ACE_Multiplexor (void);
- virtual int link_from_above (Driver &ld);
+ 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 (Driver &ld);
+ virtual int unlink_from_above (ACE_Driver &ld);
virtual int unlink_from_above (ACE_Multiplexor &lm);
virtual int unlink_from_below (ACE_Module *mod);
};