#include <Service_Config.h>
Public Methods | |
| void | dump (void) const |
| Dump the state of an object. More... | |
| int | operator== (ACE_Static_Svc_Descriptor &) const |
| Compare two service descriptors for equality. More... | |
| int | operator!= (ACE_Static_Svc_Descriptor &) const |
| Compare two service descriptors for inequality. More... | |
Public Attributes | |
| const ACE_TCHAR * | name_ |
| Name of the service. More... | |
| int | type_ |
| Type of service. More... | |
| ACE_SERVICE_ALLOCATOR | alloc_ |
| Factory function that allocates the service. More... | |
| u_int | flags_ |
| Bitmask flags indicating how the framework should delete memory. More... | |
| int | active_ |
| Flag indicating whether the service starts out active. More... | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. More... | |
Definition at line 53 of file Service_Config.h.
|
|
Dump the state of an object.
|
|
|
Compare two service descriptors for inequality.
Definition at line 57 of file Service_Config.i.
00058 {
00059 return !(*this == d);
00060 }
|
|
|
Compare two service descriptors for equality.
Definition at line 49 of file Service_Config.i. References name_, and ACE_OS_String::strcmp.
00050 {
00051 return ACE_OS::strcmp (name_, d.name_) == 0;
00052 }
|
|
|
Declare the dynamic allocation hooks.
Definition at line 75 of file Service_Config.h. |
|
|
Flag indicating whether the service starts out active.
Definition at line 69 of file Service_Config.h. Referenced by ACE_Service_Config::process_directive. |
|
|
Factory function that allocates the service.
Definition at line 63 of file Service_Config.h. Referenced by ACE_Service_Config::process_directive, and ACE_Static_Function_Node::symbol. |
|
|
Bitmask flags indicating how the framework should delete memory.
Definition at line 66 of file Service_Config.h. Referenced by ACE_Service_Config::process_directive. |
|
|
Name of the service.
Definition at line 57 of file Service_Config.h. Referenced by operator==, ACE_Service_Config::process_directive, and ACE_Static_Function_Node::symbol. |
|
|
Type of service.
Definition at line 60 of file Service_Config.h. Referenced by ACE_Service_Config::process_directive. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002