logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

ost::StringObject - The StringObject class is used to derive subclasses that use the String managed

Author

       Generated automatically by Doxygen for GNU CommonC++ from the source code.

GNU CommonC++                                    Sun Dec 27 2020                            ost::StringObject(3)

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@ostel.com

       Objects managed in reusable String memory pools

Member Function Documentation

voidost::StringObject::operatordelete(void*obj)
       Delete object from string managed space.

   void*ost::StringObject::operatornew(size_tsize)
       Create a new object in string managed space.

Name

       ost::StringObject - 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.

Synopsis

       #include <string.h>

   PublicMemberFunctions
       void * operatornew (size_t size) NEW_THROWS
           Create a new object in string managed space.
       void operatordelete (void *obj)
           Delete object from string managed space.

See Also