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

Method ClearProperties

IO/IOSS/vtkIOSSReader.cxx:903–918  ·  view source on GitHub ↗

----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

901
902//----------------------------------------------------------------------------
903void vtkIOSSReader::ClearProperties()
904{
905 auto& internals = (*this->Internals);
906 auto& pm = internals.DatabaseProperties;
907 if (pm.count() > 0)
908 {
909 Ioss::NameList names;
910 pm.describe(&names);
911 for (const auto& name : names)
912 {
913 pm.erase(name);
914 }
915 internals.Reset();
916 this->Modified();
917 }
918}
919
920//----------------------------------------------------------------------------
921vtkDataAssembly* vtkIOSSReader::GetAssembly()

Callers

nothing calls this directly

Calls 4

countMethod · 0.45
eraseMethod · 0.45
ResetMethod · 0.45
ModifiedMethod · 0.45

Tested by

no test coverage detected