------------------------------------------------------------------------------
| 36 | |
| 37 | //------------------------------------------------------------------------------ |
| 38 | vtkInformationKey::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 | //------------------------------------------------------------------------------ |
| 51 | vtkInformationKey::~vtkInformationKey() |
nothing calls this directly
no test coverage detected