| 10 | #include <QDateTime> |
| 11 | |
| 12 | SessionModel::SessionModel(QObject *parent) |
| 13 | : QAbstractTableModel(parent) |
| 14 | { |
| 15 | sessionList = SessionManager::instance()->sessionList(); |
| 16 | } |
| 17 | |
| 18 | int SessionModel::rowOfSession(const QString &session) const |
| 19 | { |
nothing calls this directly
no test coverage detected