------------------------------------------------------------------------------
| 65 | |
| 66 | //------------------------------------------------------------------------------ |
| 67 | vtkObject* vtkObjectIdMap::GetVTKObject(vtkTypeUInt32 globalId) |
| 68 | { |
| 69 | auto iter = this->Internals->Object.find(globalId); |
| 70 | if (iter == this->Internals->Object.end()) |
| 71 | { |
| 72 | return nullptr; |
| 73 | } |
| 74 | return iter->second; |
| 75 | } |
| 76 | |
| 77 | //------------------------------------------------------------------------------ |
| 78 | vtkTypeUInt32 vtkObjectIdMap::SetActiveObject(const char* objectType, vtkObject* obj) |
no test coverage detected