MCPcopy Create free account
hub / github.com/Kitware/VTK / ReadStdin

Method ReadStdin

Utilities/PythonInterpreter/vtkPythonInterpreter.cxx:943–954  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

941
942//------------------------------------------------------------------------------
943vtkStdString vtkPythonInterpreter::ReadStdin()
944{
945 if (!vtkPythonInterpreter::CaptureStdin)
946 {
947 vtkStdString string;
948 std::cin >> string;
949 return string;
950 }
951 vtkStdString string;
952 NotifyInterpreters(vtkCommand::UpdateEvent, &string);
953 return string;
954}
955
956//------------------------------------------------------------------------------
957void vtkPythonInterpreter::SetLogVerbosity(int val)

Callers

nothing calls this directly

Calls 1

NotifyInterpretersFunction · 0.85

Tested by

no test coverage detected