NAME
ACE_Static_Svc_Descriptor
SYNOPSIS
#include <ace/Service_Config.h>
struct ACE_Static_Svc_Descriptor
{
public:
char *name_;
int type_;
ACE_Service_Object *(*alloc_)(void);
u_int flags_;
int active_;
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;
int operator== (ACE_Static_Svc_Descriptor &) const;
};
PUBLIC MEMBERS
char *name_;
int type_;
ACE_Service_Object *(*alloc_)(void);
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.
void dump (void) const;
Dump the state of an object.
ACE_ALLOC_HOOK_DECLARE;
Declare the dynamic allocation hooks.
int operator== (ACE_Static_Svc_Descriptor &) const;
Compare two service descriptors for equality.
AUTHOR
Doug Schmidt
Maintain a set of the statically linked service descriptor.
LIBRARY
ace