----------------------------------------------------------------------------
| 476 | |
| 477 | //---------------------------------------------------------------------------- |
| 478 | vtkSession* vtkProcessModule::GetSession(vtkIdType sessionID) |
| 479 | { |
| 480 | vtkProcessModuleInternals::MapOfSessions::iterator iter = |
| 481 | this->Internals->Sessions.find(sessionID); |
| 482 | if (iter != this->Internals->Sessions.end()) |
| 483 | { |
| 484 | return iter->second.GetPointer(); |
| 485 | } |
| 486 | |
| 487 | return nullptr; |
| 488 | } |
| 489 | |
| 490 | //---------------------------------------------------------------------------- |
| 491 | vtkIdType vtkProcessModule::GetSessionID(vtkSession* session) |
no test coverage detected