NAME
ACE_Obchunk -
A "chunk" of memory. This should be a nested class but some
compilers don't like them yet.
SYNOPSIS
#include <ace/Obstack.h>
class ACE_Obchunk
{
public:
friend class ACE_Obstack;
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;
private:
char *end_;
char *cur_;
ACE_Obchunk *next_;
char contents_[4];
};
PUBLIC MEMBERS
friend class ACE_Obstack;
void dump (void) const;
Dump the state of an object.
ACE_ALLOC_HOOK_DECLARE;
Declare the dynamic allocation hooks.
PRIVATE MEMBERS
char *end_;
char *cur_;
ACE_Obchunk *next_;
char contents_[4];
AUTHOR
Doug Schmidt
LIBRARY
ace