#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 105 of file Service_Config.h.
| void ACE_Static_Svc_Descriptor::dump | ( | void | ) | const |
Dump the state of an object.
| ACE_INLINE bool ACE_Static_Svc_Descriptor::operator!= | ( | ACE_Static_Svc_Descriptor & | ) | const |
| ACE_INLINE bool ACE_Static_Svc_Descriptor::operator== | ( | ACE_Static_Svc_Descriptor & | ) | const |
Compare two service descriptors for equality.
Definition at line 101 of file Service_Config.inl.
References name_, and ACE_OS::strcmp().
00102 { 00103 return ACE_OS::strcmp (name_, d.name_) == 0; 00104 }
Flag indicating whether the service starts out active.
Definition at line 121 of file Service_Config.h.
Referenced by ACE_Service_Gestalt::process_directive_i().
Factory function that allocates the service.
Definition at line 115 of file Service_Config.h.
Referenced by ACE_Service_Gestalt::process_directive_i().
Bitmask flags indicating how the framework should delete memory.
Definition at line 118 of file Service_Config.h.
Referenced by ACE_Service_Gestalt::process_directive_i().
Name of the service.
Definition at line 109 of file Service_Config.h.
Referenced by ACE_Service_Gestalt::add_processed_static_svc(), operator==(), ACE_Service_Gestalt::process_directive_i(), and ACE_Service_Gestalt::Processed_Static_Svc::Processed_Static_Svc().
Type of service.
Definition at line 112 of file Service_Config.h.
Referenced by ACE_Service_Gestalt::process_directive_i().
1.4.7