| 349 | |
| 350 | |
| 351 | void setcontent( int iLow, int iHigh, const T *pContent ) |
| 352 | { |
| 353 | setbounds(iLow, iHigh); |
| 354 | for(int i=0; i<m_iVecSize; i++) |
| 355 | m_Vec[i] = pContent[i]; |
| 356 | }; |
| 357 | |
| 358 | |
| 359 | T* getcontent() |
nothing calls this directly
no outgoing calls
no test coverage detected