NAME
ACE_Name_Node -
This is stored as a linked list within the Memory_Pool
to allow "named memory chunks."
SYNOPSIS
#include <ace/Malloc.h >
class ACE_Name_Node
{
public:
ACE_Name_Node (const char *name, void *, ACE_Name_Node *);
ACE_Name_Node (void);
char *name_;
void *pointer_;
ACE_Name_Node *next_;
void dump (void) const;
};
Initialization methods.
ACE_Name_Node (const char *name, void *, ACE_Name_Node *);
ACE_Name_Node (void);
char *name_;
void *pointer_;
ACE_Name_Node *next_;
Pointer to the next node in the chain.
void dump (void) const;
Dump the state of the object.
AUTHOR
Doug Schmidt and Irfan Pyarali
LIBRARY
ace