#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 104 of file Service_Config.h.
      
  | 
  
| 
 Dump the state of an object. 
  | 
  
      
  | 
  
| 
 Compare two service descriptors for inequality. 
 Definition at line 97 of file Service_Config.inl. 
 00098 {
00099   return !(*this == d);
00100 }
 | 
  
      
  | 
  
| 
 Compare two service descriptors for equality. 
 Definition at line 89 of file Service_Config.inl. References name_, and ACE_OS::strcmp(). 
 00090 {
00091   return ACE_OS::strcmp (name_, d.name_) == 0;
00092 }
 | 
  
      
  | 
  
| 
 Declare the dynamic allocation hooks. 
 Definition at line 126 of file Service_Config.h.  | 
  
      
  | 
  
| 
 Flag indicating whether the service starts out active. 
 Definition at line 120 of file Service_Config.h. Referenced by ACE_Service_Gestalt::process_directive_i().  | 
  
      
  | 
  
| 
 Factory function that allocates the service. 
 Definition at line 114 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 117 of file Service_Config.h. Referenced by ACE_Service_Gestalt::process_directive_i().  | 
  
      
  | 
  
| 
 Name of the service. 
 Definition at line 108 of file Service_Config.h. Referenced by operator==(), ACE_Service_Gestalt::process_directive_i(), and ACE_Service_Gestalt::Processed_Static_Svc::Processed_Static_Svc().  | 
  
      
  | 
  
| 
 Type of service. 
 Definition at line 111 of file Service_Config.h. Referenced by ACE_Service_Gestalt::process_directive_i().  | 
  
 
1.3.6