The Vish Visualization Shell 0.3
Vish
List of all members
Traum::DynamicArray< Value > Struct Template Reference

A really simple array class that allows to set the size of the array at runtime (. More...

#include <elementary/ode/DynamicArray.hpp>

Detailed Description

template<class Value>
struct Traum::DynamicArray< Value >

A really simple array class that allows to set the size of the array at runtime (.

See also
StaticArray) and performs a complete copy on assignment. No reference counting or whatsover is employed, each instance of the DynamicArray occupies its own memory. It employs memcpy() for copying objects, is only suitable for native, simple objects. DynamicArrays consequently cannot be nested. It is designed mainly is for internal use within numerical algorithms and does not provide end-user security.