Set the C-style data array.*/
| 111 | |
| 112 | /** Set the C-style data array.*/ |
| 113 | void setData ( Type* data, const size_t count ) |
| 114 | { |
| 115 | mData = data; |
| 116 | mCount = count; |
| 117 | mCapacity = count; |
| 118 | } |
| 119 | |
| 120 | /** Set the C-style data array and count.*/ |
| 121 | void setData ( Type* data, const size_t count, const size_t capacity ) |
no outgoing calls
no test coverage detected