* Reentrant safe way to get an object in a collection. Just pass the * same cookie back and forth. */
| 41 | * same cookie back and forth. |
| 42 | */ |
| 43 | vtkOverrideInformation* GetNextOverrideInformation(vtkCollectionSimpleIterator& cookie) |
| 44 | { |
| 45 | return static_cast<vtkOverrideInformation*>(this->GetNextItemAsObject(cookie)); |
| 46 | } |
| 47 | |
| 48 | protected: |
| 49 | vtkOverrideInformationCollection() = default; |
nothing calls this directly
no test coverage detected