| 285 | } |
| 286 | |
| 287 | AnnotationModel::AnnotationModel(Okular::Document *document, QObject *parent) |
| 288 | : QAbstractItemModel(parent) |
| 289 | , d(new AnnotationModelPrivate(this)) |
| 290 | { |
| 291 | d->document = document; |
| 292 | |
| 293 | d->document->addObserver(d); |
| 294 | } |
| 295 | |
| 296 | AnnotationModel::~AnnotationModel() |
| 297 | { |
nothing calls this directly
no test coverage detected