#include <cellarray.h>
Public Member Functions | |
Cell (void) | |
Cell (const Cell &cell) | |
~Cell () | |
void | operator= (const DataType &val) |
void | operator= (const Cell< DataType > &rhs) |
seal::Cell< DataType >::Cell | ( | void | ) | [inline] |
Default constructor.
seal::Cell< DataType >::Cell | ( | const Cell< DataType > & | cell | ) | [inline] |
Copy constructor.
seal::Cell< DataType >::~Cell | ( | ) | [inline] |
Destructor.
void seal::Cell< DataType >::operator= | ( | const DataType & | val | ) | [inline] |
Assignment operator which changes the value held by the cell.
void seal::Cell< DataType >::operator= | ( | const Cell< DataType > & | rhs | ) | [inline] |
Assignment operator which makes the LHS and RHS Cell objects hold the data values. That is, after the assignment operation, any change to the LHS object data value will get reflected in the RHS object data value.