summaryrefslogtreecommitdiff
path: root/ace/Module.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-01-29 16:42:23 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-01-29 16:42:23 +0000
commit49ae1ae277a0463a7348d15e65b853d2b26fccdf (patch)
tree60789692ae481acc58b1aeaffe2dcfdc66c7b5f9 /ace/Module.h
parent9caa0a9570332981d8d48ef7042856fa05c99422 (diff)
downloadATCD-49ae1ae277a0463a7348d15e65b853d2b26fccdf.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Module.h')
-rw-r--r--ace/Module.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/ace/Module.h b/ace/Module.h
index 119f57560aa..0bebe00ffba 100644
--- a/ace/Module.h
+++ b/ace/Module.h
@@ -20,10 +20,7 @@
#include "ace/ACE.h"
#include "ace/Task_T.h"
-// Forward decl.
-// template <ACE_SYNCH_DECL> class ACE_Task;
-
-struct ACE_Export ACE_Module_Base
+class ACE_Export ACE_Module_Base
{
// = TITLE
// Workaround HP/C++ compiler bug with enums in templates.
@@ -32,7 +29,7 @@ struct ACE_Export ACE_Module_Base
// The ever lamest HP/C++ compiler seems to fail if enums are
// defined inside a template, hence we have to move them into a
// base class.
-
+public:
enum
{
M_DELETE_NONE = 0,
@@ -50,7 +47,6 @@ struct ACE_Export ACE_Module_Base
// The <M_DELETE_READER> and <M_DELETE_WRITER> flags may be or'ed
// together.
};
-
};
template <ACE_SYNCH_DECL>