MADNESS
0.10.1
|
Wrapper for dynamic arrays and pointers. More...
#include <archive.h>
Public Member Functions | |
archive_array () | |
Constructor specifying no array and of 0 length. More... | |
archive_array (const T *ptr, unsigned int n) | |
Constructor specifying a memory location and size. More... | |
Public Attributes | |
unsigned int | n |
The number of objects in the array. More... | |
const T * | ptr |
The pointer. More... | |
Wrapper for dynamic arrays and pointers.
T | The type of object being pointed to. |
|
inline |
Constructor specifying a memory location and size.
[in] | ptr | The pointer. |
[in] | n | The number of objects in the array. |
|
inline |
Constructor specifying no array and of 0 length.
unsigned int madness::archive::archive_array< T >::n |
The number of objects in the array.
Referenced by madness::archive::ArchiveImpl< Archive, archive_array< T > >::wrap_load(), and madness::archive::ArchiveImpl< Archive, archive_array< T > >::wrap_store().
const T* madness::archive::archive_array< T >::ptr |