////////////////////////////////////////////////////////////////////////// Clear -- removes all items from the vector //////////////////////////////////////////////////////////////////////////
| 344 | // Clear -- removes all items from the vector |
| 345 | /////////////////////////////////////////////////////////////////////////////// |
| 346 | void cFCOPropVector::Clear(void) |
| 347 | { |
| 348 | mMask = 0; |
| 349 | if (mpBuf) |
| 350 | { |
| 351 | std::fill(mpBuf->begin(), mpBuf->end(), 0); |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | |
| 356 | /////////////////////////////////////////////////////////////////////////////// |