Clears the array, i.e. releasese memory if nescesary and reset all members.*/
| 98 | |
| 99 | /** Clears the array, i.e. releasese memory if nescesary and reset all members.*/ |
| 100 | void clear() |
| 101 | { |
| 102 | if ( mFlags & RELEASE_MEMORY) |
| 103 | releaseMemory(); |
| 104 | } |
| 105 | |
| 106 | /** Returns the C-style data array.*/ |
| 107 | Type* getData () { return mData; } |
no outgoing calls
no test coverage detected