|
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. | |
| archive_array (const T *ptr, unsigned int n) | |
| Constructor specifying a memory location and size. | |
Public Attributes | |
| unsigned int | n |
| The number of objects in the array. | |
| const T * | ptr |
| The pointer. | |
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.
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 |