| 292 | CKuStringDataT(T ch) |
| 293 | { Init(); Alloc(1); m_sString[0] = ch; m_iLength = 1; } |
| 294 | ~CKuStringDataT() |
| 295 | { |
| 296 | if (m_sData) |
| 297 | free(m_sData); |
| 298 | } |
| 299 | |
| 300 | unsigned int AddRef() { return ++m_iRefCount; } |
| 301 | unsigned int Release() |
nothing calls this directly
no outgoing calls
no test coverage detected