| 24 | T getValue(int n, int m) { return _array[n][m]; } |
| 25 | |
| 26 | ~DynArray2D() |
| 27 | { |
| 28 | for (int i = 0; i < _n; i++) { |
| 29 | delete[] _array[i]; |
| 30 | } |
| 31 | delete[] _array; |
| 32 | } |
| 33 | |
| 34 | protected: |
| 35 | T **_array; |
nothing calls this directly
no outgoing calls
no test coverage detected