3D array used in nix-vector-routing example "nms-p2p-nix.cc" More...
Public Member Functions | |
Array3D (const size_t x, const size_t y, const size_t z) | |
Constructor. More... | |
~Array3D () | |
Array2D< T > & | operator[] (const size_t i) |
Accessor operator. More... | |
Private Attributes | |
const size_t | m_xMax |
maximum number of rows More... | |
Array2D< T > ** | p |
Stored elements. More... | |
3D array used in nix-vector-routing example "nms-p2p-nix.cc"
Definition at line 116 of file nms-p2p-nix.cc.
|
inline |
Constructor.
x | number of rows |
y | number of columns |
z | number of layers |
Definition at line 125 of file nms-p2p-nix.cc.
Definition at line 135 of file nms-p2p-nix.cc.
Accessor operator.
i | index to be retrieved |
Definition at line 151 of file nms-p2p-nix.cc.
|
private |
maximum number of rows
Definition at line 158 of file nms-p2p-nix.cc.
Stored elements.
Definition at line 157 of file nms-p2p-nix.cc.