#include <Capabilities.h>
Inheritance diagram for ACE_CapEntry:
Public Member Functions | |
virtual | ~ACE_CapEntry (void) |
Protected Types | |
enum | { ACE_INTCAP = 0, ACE_STRINGCAP = 1, ACE_BOOLCAP = 2 } |
Protected Member Functions | |
ACE_CapEntry (int captype) | |
Protected Attributes | |
int | captype_ |
This class is not instantiable and does not provide accessors or methods. If you want to add a new kind of attribute subclass this class and dynamic_cast to proper subclass.
Definition at line 42 of file Capabilities.h.
|
Definition at line 50 of file Capabilities.h.
00051 { 00052 ACE_INTCAP = 0, 00053 ACE_STRINGCAP = 1, 00054 ACE_BOOLCAP = 2 00055 }; |
|
Definition at line 21 of file Capabilities.cpp.
00022 { 00023 } |
|
Definition at line 8 of file Capabilities.inl.
00009 : captype_ (captype) 00010 { 00011 } |
|
Definition at line 61 of file Capabilities.h. |