NAME

ACE_Static_Function_Node - Keeps track of the symbol name for a function that is not linked in from a DLL, but is statically linked with the application.

SYNOPSIS

#include <ace/Parse_Node.h>

class ACE_Static_Function_Node : public ACE_Location_Node { public: ACE_Static_Function_Node (const char *func_name); virtual void *symbol (ACE_Service_Object_Exterminator * = 0); virtual ~ACE_Static_Function_Node (void); void dump (void) const; ACE_ALLOC_HOOK_DECLARE; private: const char *function_name_; };

PUBLIC MEMBERS

ACE_Static_Function_Node (const char *func_name);

virtual void *symbol (ACE_Service_Object_Exterminator * = 0);

virtual ~ACE_Static_Function_Node (void);

void dump (void) const;

ACE_ALLOC_HOOK_DECLARE;

PRIVATE MEMBERS

const char *function_name_;

AUTHOR

Doug Schmidt

LIBRARY

ace