------------------------------------------------------------------------------
| 76 | |
| 77 | //------------------------------------------------------------------------------ |
| 78 | vtkTypeUInt32 vtkObjectIdMap::SetActiveObject(const char* objectType, vtkObject* obj) |
| 79 | { |
| 80 | if (objectType) |
| 81 | { |
| 82 | this->Internals->ActiveObjects[objectType] = obj; |
| 83 | return this->GetGlobalId(obj); |
| 84 | } |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | //------------------------------------------------------------------------------ |
| 89 | vtkObject* vtkObjectIdMap::GetActiveObject(const char* objectType) |
no test coverage detected