| 41 | IE_CORE_DEFINEOBJECTTYPEDESCRIPTION( ObjectMatrix ); |
| 42 | |
| 43 | ObjectMatrix::ObjectMatrix( size_t rows, size_t columns ) |
| 44 | : m_rows( rows ), m_columns( columns ) |
| 45 | { |
| 46 | m_members.resize( rows * columns, nullptr ); |
| 47 | } |
| 48 | |
| 49 | ObjectMatrix::~ObjectMatrix() |
| 50 | { |