| 10 | #include <kdevelopsessionswatch.h> |
| 11 | |
| 12 | SessionListModel::SessionListModel(QObject *parent) |
| 13 | : QAbstractListModel(parent) |
| 14 | { |
| 15 | KDevelopSessionsWatch::registerObserver(this); |
| 16 | } |
| 17 | |
| 18 | SessionListModel::~SessionListModel() |
| 19 | { |
nothing calls this directly
no test coverage detected