Try add a new class QXlsx::Document

This commit is contained in:
Debao Zhang
2013-09-06 16:34:41 +08:00
parent 962caabdf0
commit f5411b9b5a
6 changed files with 153 additions and 6 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef XLSXDOCUMENT_P_H
#define XLSXDOCUMENT_P_H
#include "xlsxdocument.h"
namespace QXlsx {
class DocumentPrivate
{
Q_DECLARE_PUBLIC(Document)
public:
DocumentPrivate(Document *p);
bool loadPackage(QIODevice *device);
Document *q_ptr;
const QString defaultPackageName; //default name when package name not specified
QString packageName; //name of the .xlsx file
};
}
#endif // XLSXDOCUMENT_P_H