------------------------------------------------------------------------------
| 26 | |
| 27 | //------------------------------------------------------------------------------ |
| 28 | std::string vtkPSystemTools::CollapseFullPath(const std::string& in_relative) |
| 29 | { |
| 30 | vtkMultiProcessController* controller = vtkMultiProcessController::GetGlobalController(); |
| 31 | std::string returnString; |
| 32 | if (controller->GetLocalProcessId() == 0) |
| 33 | { |
| 34 | returnString = vtksys::SystemTools::CollapseFullPath(in_relative, nullptr); |
| 35 | } |
| 36 | vtkPSystemTools::BroadcastString(returnString, 0); |
| 37 | |
| 38 | return returnString; |
| 39 | } |
| 40 | |
| 41 | //------------------------------------------------------------------------------ |
| 42 | std::string vtkPSystemTools::CollapseFullPath(const std::string& in_path, const char* in_base) |
nothing calls this directly
no test coverage detected