| 490 | } |
| 491 | |
| 492 | void Conductor::saveExecution(Execution *e) |
| 493 | { |
| 494 | |
| 495 | const auto file_path = QFileDialog::getSaveFileName(nullptr, "Save Execution To a File").toStdString(); |
| 496 | |
| 497 | db_handler::save_execution(e, file_path.c_str()); |
| 498 | |
| 499 | qDebug() << "execution saved"; |
| 500 | } |
| 501 | |
| 502 | void Conductor::readSettings() |
| 503 | { |
nothing calls this directly
no test coverage detected