MCPcopy Create free account
hub / github.com/Kitware/VTK / GetNextItemAsObject

Method GetNextItemAsObject

Common/Core/vtkCollection.h:196–209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

194};
195
196inline vtkObject* vtkCollection::GetNextItemAsObject()
197{
198 vtkCollectionElement* elem = this->Current;
199
200 if (elem != nullptr)
201 {
202 this->Current = elem->Next;
203 return elem->Item;
204 }
205 else
206 {
207 return nullptr;
208 }
209}
210
211inline vtkObject* vtkCollection::GetNextItemAsObject(
212 vtkCollectionSimpleIterator& cookie) VTK_FUTURE_CONST

Callers 15

GetNextItemMethod · 0.80
GetNextImageReader2Method · 0.80
CreateImageReader2Method · 0.80
GetNextTransformFunction · 0.80
GetNextItemMethod · 0.80
GetNextItemFunction · 0.80
GetNextDataArrayFunction · 0.80
GetNextItemMethod · 0.80
GetNextItemFunction · 0.80

Calls

no outgoing calls

Tested by 2

IsEqualFunction · 0.64
TestGeneralFunction · 0.64