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 (void) | |
| 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 110 of file nms-p2p-nix.cc.
|
inline |
Constructor.
| x | number of rows |
| y | number of columns |
| z | number of layers |
Definition at line 119 of file nms-p2p-nix.cc.
Definition at line 125 of file nms-p2p-nix.cc.
Accessor operator.
| i | index to be retrieved |
Definition at line 141 of file nms-p2p-nix.cc.
|
private |
maximum number of rows
Definition at line 147 of file nms-p2p-nix.cc.
Stored elements.
Definition at line 146 of file nms-p2p-nix.cc.