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

Method Save

Filters/Parallel/vtkCleanArrays.cxx:266–276  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

264 }
265
266 void Save(vtkMultiProcessStream& stream)
267 {
268 stream.Reset();
269 stream << this->Valid;
270 stream << static_cast<unsigned int>(this->size());
271 vtkCleanArrays::vtkArraySet::iterator iter;
272 for (iter = this->begin(); iter != this->end(); ++iter)
273 {
274 stream << iter->Name << iter->NumberOfComponents << iter->Type;
275 }
276 }
277
278 void Load(vtkMultiProcessStream& stream)
279 {

Callers 3

IntersectStreamsFunction · 0.45
UnionStreamsFunction · 0.45
RequestDataMethod · 0.45

Calls 4

ResetMethod · 0.45
sizeMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected