! * Creates a new empty xlsx document. * The \a parent argument is passed to QObject's constructor. */
| 540 | * The \a parent argument is passed to QObject's constructor. |
| 541 | */ |
| 542 | Document::Document(QObject *parent) : |
| 543 | QObject(parent), d_ptr(new DocumentPrivate(this)) |
| 544 | { |
| 545 | d_ptr->init(); |
| 546 | } |
| 547 | |
| 548 | /*! |
| 549 | * \overload |
nothing calls this directly
no test coverage detected