#include <gul_types.h>
Inheritance diagram for gul::pool_object::

Public Methods | |
| void * | operator new (size_t s) |
| void | operator delete (void *p, size_t s) |
|
||||||||||||
|
Definition at line 1841 of file gul_types.h. References gust::PreferPoolFree().
01842 {
01843 gust::PreferPoolFree( p, s );
01844 }
|
|
|
Definition at line 1833 of file gul_types.h. References gust::PreferPoolAlloc().
01834 {
01835 size_t dummy;
01836 void *p = gust::PreferPoolAlloc( s, &dummy );
01837 if( p == NULL ) throw PoolAllocError();
01838 return(p);
01839 }
|
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001