#include <Service_Config.h>
Public Member Functions | |
void | dump (void) const |
Dump the state of an object. | |
bool | operator== (ACE_Static_Svc_Descriptor &) const |
Compare two service descriptors for equality. | |
bool | operator!= (ACE_Static_Svc_Descriptor &) const |
Compare two service descriptors for inequality. | |
Public Attributes | |
const ACE_TCHAR * | name_ |
Name of the service. | |
int | type_ |
Type of service. | |
ACE_SERVICE_ALLOCATOR | alloc_ |
Factory function that allocates the service. | |
u_int | flags_ |
Bitmask flags indicating how the framework should delete memory. | |
int | active_ |
Flag indicating whether the service starts out active. | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. |
Definition at line 92 of file Service_Config.h.
|
Dump the state of an object.
|
|
Compare two service descriptors for inequality.
Definition at line 65 of file Service_Config.inl.
00066 { 00067 return !(*this == d); 00068 } |
|
Compare two service descriptors for equality.
Definition at line 57 of file Service_Config.inl. References name_, and ACE_OS::strcmp().
00058 { 00059 return ACE_OS::strcmp (name_, d.name_) == 0; 00060 } |
|
Declare the dynamic allocation hooks.
Definition at line 114 of file Service_Config.h. |
|
Flag indicating whether the service starts out active.
Definition at line 108 of file Service_Config.h. Referenced by ACE_Service_Gestalt::insert(), and ACE_Service_Gestalt::process_directive_i(). |
|
Factory function that allocates the service.
Definition at line 102 of file Service_Config.h. Referenced by ACE_Service_Gestalt::process_directive_i(), and ACE_Static_Function_Node::symbol(). |
|
Bitmask flags indicating how the framework should delete memory.
Definition at line 105 of file Service_Config.h. Referenced by ACE_Service_Gestalt::process_directive_i(). |
|
Name of the service.
Definition at line 96 of file Service_Config.h. Referenced by ACE_Service_Gestalt::insert(), operator==(), ACE_Service_Gestalt::process_directive_i(), and ACE_Service_Gestalt::Processed_Static_Svc::Processed_Static_Svc(). |
|
Type of service.
Definition at line 99 of file Service_Config.h. Referenced by ACE_Service_Gestalt::process_directive_i(). |