#include <dataptr.h>
Public Attributes | |
T * | data |
'**'
. An example is as follows
A common requirement is to have double pointer of type int
**:
int **doublePtr;
In order to avoid the use of '**'
, one can use the DataPtr
template class as follows:
DataPtr<int> *doublePtr;
After the above declaration doublePtr is a pointer to a object which points to data of type int
.
T* seal::DataPtr< T >::data |
The data pointer.