You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
428 B
25 lines
428 B
12 years ago
|
#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
|