| 383 | } |
| 384 | |
| 385 | static void load_execution(Conductor &c, const char *path) |
| 386 | { |
| 387 | |
| 388 | auto ex = db_handler::load_execution(path); |
| 389 | |
| 390 | if (!ex) |
| 391 | { |
| 392 | print("could not load the execution"); |
| 393 | } |
| 394 | else |
| 395 | { |
| 396 | c.addNewExecution(ex); |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | static void save_and_load(Conductor &c, const char *path) |
| 401 | { |
no test coverage detected