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

Method Load

Filters/Parallel/vtkCleanArrays.cxx:278–290  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

276 }
277
278 void Load(vtkMultiProcessStream& stream)
279 {
280 this->clear();
281 unsigned int numvalues;
282 stream >> this->Valid;
283 stream >> numvalues;
284 for (unsigned int cc = 0; cc < numvalues; cc++)
285 {
286 vtkCleanArrays::vtkArrayData mda;
287 stream >> mda.Name >> mda.NumberOfComponents >> mda.Type;
288 this->insert(mda);
289 }
290 }
291 void Print()
292 {
293 vtkCleanArrays::vtkArraySet::iterator iter;

Callers 3

IntersectStreamsFunction · 0.45
UnionStreamsFunction · 0.45
RequestDataMethod · 0.45

Calls 2

clearMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected