#include <stl_alloc.h>
Static Public Methods | |
| T * | allocate (size_t n) |
| T * | allocate (void) |
| void | deallocate (T *p, size_t n) |
| void | deallocate (T *p) |
|
||||||||||
|
Definition at line 222 of file stl_alloc.h.
00223 { return (T*) Alloc::allocate(sizeof (T)); }
|
|
||||||||||
|
Definition at line 220 of file stl_alloc.h.
00221 { return 0 == n? 0 : (T*) Alloc::allocate(n * sizeof (T)); }
|
|
||||||||||
|
Definition at line 226 of file stl_alloc.h.
00227 { Alloc::deallocate(p, sizeof (T)); }
|
|
||||||||||||||||
|
Definition at line 224 of file stl_alloc.h.
00225 { if (0 != n) Alloc::deallocate(p, n * sizeof (T)); }
|
| Documentation generated on Thu May 2 15:03:44 2002 |
Generated with doxygen 1.2.12 by Dimitri van Heesch , 1997-2001 |