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

Method vtkInformationKey

Common/Core/vtkInformationKey.cxx:38–48  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

36
37//------------------------------------------------------------------------------
38vtkInformationKey::vtkInformationKey(const char* name, const char* location)
39{
40 // Save the name and location.
41 this->Name = nullptr;
42 this->SetName(name);
43
44 this->Location = nullptr;
45 this->SetLocation(location);
46
47 vtkInformationKeyLookup::RegisterKey(this, name, location);
48}
49
50//------------------------------------------------------------------------------
51vtkInformationKey::~vtkInformationKey()

Callers

nothing calls this directly

Calls 2

SetLocationMethod · 0.80
SetNameMethod · 0.45

Tested by

no test coverage detected