neuray API Programmer's Manual

Memory Management

[Base API]

Description

The memory management provides an interface for allocators including a default implementation. You can request dynamic memory from an allocator implementation through an mi::base::IAllocator interface. A default implementation based on global new and delete operators is mi::base::Default_allocator.

You can adapt an allocator to become a standard STL allocator using mi::base::Std_allocator.

Classes

class 
A default allocator implementation based on global new and delete. More...
class 
The IAllocator interface class supports allocating and releasing memory dynamically. More...
class 
An adaptor class template that implements a standard STL allocator. More...