| 19 | #include "pdftextbox.h" |
| 20 | |
| 21 | PDFTextBox::PDFTextBox(const QString &text, const QRectF &boundingRect) |
| 22 | : _text(text), _boundingRect(boundingRect) |
| 23 | { |
| 24 | _page = Q_NULLPTR; |
| 25 | _parentBox = Q_NULLPTR; |
| 26 | _type = Text; |
| 27 | } |
| 28 | |
| 29 | PDFTextBox::~PDFTextBox() |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected