| 1256 | } |
| 1257 | |
| 1258 | void TOPPASToolVertex::writeParam_(const Param& param, const QString& ini_file) |
| 1259 | { |
| 1260 | Param save_param; |
| 1261 | save_param.setValue(name_ + ":1:toppas_dummy", "blub"); |
| 1262 | save_param.insert(name_ + ":1:", param); |
| 1263 | save_param.remove(name_ + ":1:toppas_dummy"); |
| 1264 | save_param.setSectionDescription(name_ + ":1", "Instance '1' section for '" + name_ + "'"); |
| 1265 | ParamXMLFile paramFile; |
| 1266 | paramFile.store(ini_file, save_param); |
| 1267 | } |
| 1268 | |
| 1269 | void TOPPASToolVertex::toggleBreakpoint() |
| 1270 | { |
nothing calls this directly
no test coverage detected