36 if (column >= m_columnCount)
throw Exception();
37 return m_entries[(row * m_columnCount) + column];
44 if (column >= m_columnCount)
throw Exception();
45 return m_entries[(row * m_columnCount) + column];
52 m_entries.resize(rowCount * columnCount);
56 size_t entryCount = m_entries.size();
57 for (
size_t i = 0; i < entryCount; ++i)
58 (m_entries[i]).clear();