10namespace MantidWidgets {
12 static auto ok =
false;
13 auto out = in.toDouble(&ok);
17 throw std::runtime_error(
"Failed to parse '" + in.toStdString() +
"' as a double numerical value.");
21 static auto ok =
false;
22 auto constexpr BASE = 10;
23 auto out = in.toInt(&ok, BASE);
27 throw std::runtime_error(
"Failed to parse '" + in.toStdString() +
"' as a denary integer.");
The AlgorithmProgressDialogPresenter keeps track of the running algorithms and displays a progress ba...