Bayonne2 / Common C++ 2 Framework
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
StringObject Class Reference

The StringObject class is used to derive subclasses that use the String managed memory pool for all space allocations by overriding new and delete operators. More...

#include <string.h>

Public Member Functions

void * operator new (size_t size) NEW_THROWS
 Create a new object in string managed space. More...
 
void operator delete (void *obj)
 Delete object from string managed space. More...
 

Detailed Description

The StringObject class is used to derive subclasses that use the String managed memory pool for all space allocations by overriding new and delete operators.

Due to size limits, StringObject should not hold very large objects.

Author
David Sugar dyfet.nosp@m.@ost.nosp@m.el.co.nosp@m.m Objects managed in reusable String memory pools

Definition at line 881 of file string.h.

Member Function Documentation

void StringObject::operator delete ( void *  obj)

Delete object from string managed space.

void* StringObject::operator new ( size_t  size)

Create a new object in string managed space.


The documentation for this class was generated from the following file: