diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-11-01 16:14:11 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-11-01 16:14:11 +0000 |
commit | 199cf6059ec20528f1488ad9bd58126c9462deba (patch) | |
tree | 3703d03da36d5d30c8e3409060eccea594be6119 /ace/Capabilities.h | |
parent | 3e2caeafeee828e0d41384cced782ef7e8e2b640 (diff) | |
download | ATCD-199cf6059ec20528f1488ad9bd58126c9462deba.tar.gz |
ChangeLogTag: Mon Nov 01 10:11:36 1999 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'ace/Capabilities.h')
-rw-r--r-- | ace/Capabilities.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ace/Capabilities.h b/ace/Capabilities.h index d2c1ec5f2bb..d431c3989da 100644 --- a/ace/Capabilities.h +++ b/ace/Capabilities.h @@ -37,17 +37,17 @@ class ACE_Export ACE_CapEntry // This class is not instantiable and does not provide accessors // or methods. If you want to add a new kind of attribute you // subclasses of this class and dynamic cast to proper subclass. -protected: - enum - { - INTCAP = 0, - STRINGCAP = 1, - BOOLCAP = 2 - }; public: virtual ~ACE_CapEntry (void); protected: + enum + { + ACE_INTCAP = 0, + ACE_STRINGCAP = 1, + ACE_BOOLCAP = 2 + }; + ACE_CapEntry (int captype); int captype_; |