| 33 | } |
| 34 | |
| 35 | bool Session::save(QWidget *widget, QTextStream& stream) |
| 36 | { |
| 37 | (void) widget; |
| 38 | writeHeader(stream); |
| 39 | for (uint64_t s : slist) |
| 40 | stream << QString::asprintf("%" PRId64 "\n", (int64_t)s); |
| 41 | stream.flush(); |
| 42 | return true; |
| 43 | } |
| 44 | |
| 45 | bool Session::load(QWidget *widget, QTextStream& stream, bool quiet) |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected