#include <Array.hpp>
Public Member Functions | |
Array2D (void) | |
Null constructor. | |
Array2D (uint32_t inSize) | |
Public constructor. | |
Protected Types | |
typedef Array< Array< T > > | super |
Typedef for the base class. |
2D arrays are used to represent parts of the device wiring data. In general, the nested arrays will not be identically sized, so we provide no deep constructor here. See Array for more details on the superclass.
Definition at line 124 of file Array.hpp.
typedef Array< Array<T> > torc::architecture::Array2D< T >::super [protected] |
torc::architecture::Array2D< T >::Array2D | ( | void | ) | [inline] |
Null constructor.
torc::architecture::Array2D< T >::Array2D | ( | uint32_t | inSize | ) | [inline] |
Public constructor.
inSize | The size of the outer array. The inner arrays will be constructed with their unsized default constructor. |