| 11 | using namespace std; |
| 12 | |
| 13 | void MinorKey::reset() |
| 14 | { |
| 15 | _numberOfRowBlocks = 0; |
| 16 | _numberOfColumnBlocks = 0; |
| 17 | omfree(_rowKey); |
| 18 | _rowKey = NULL; |
| 19 | omfree(_columnKey); |
| 20 | _columnKey = NULL; |
| 21 | } |
| 22 | |
| 23 | MinorKey::MinorKey (const MinorKey& mk) |
| 24 | { |
no outgoing calls
no test coverage detected