| 288 | int GetSize(void) const { return m_nAllocatedCount; } |
| 289 | void SetNum(int n) { m_nCount = m_nAllocatedCount = n; } |
| 290 | void SetUse(int n) { m_nCount = n; } |
| 291 | void Alloc(int n) { m_nAllocatedCount = n; Realloc(); } |
| 292 | void Reserve(int n) { SetNum(n); Realloc(); Clear(); } |
| 293 | void Expand(int n) |
no outgoing calls
no test coverage detected