| 148 | } |
| 149 | |
| 150 | Document::Document(const QUrl &url) |
| 151 | : QObject() |
| 152 | , d(new DocumentPrivate) |
| 153 | { |
| 154 | d->q = this; |
| 155 | d->mImpl = nullptr; |
| 156 | d->mUrl = url; |
| 157 | d->mKeepRawData = false; |
| 158 | } |
| 159 | |
| 160 | Document::~Document() |
| 161 | { |
nothing calls this directly
no outgoing calls
no test coverage detected