------------------------------------------------------------------------------
| 43 | |
| 44 | //------------------------------------------------------------------------------ |
| 45 | void vtkCollectionIterator::GoToFirstItem() |
| 46 | { |
| 47 | if (this->Collection) |
| 48 | { |
| 49 | this->Element = this->Collection->Top; |
| 50 | } |
| 51 | else |
| 52 | { |
| 53 | this->Element = nullptr; |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | //------------------------------------------------------------------------------ |
| 58 | void vtkCollectionIterator::GoToNextItem() |
no outgoing calls