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.
32 lines
650 B
32 lines
650 B
2 years ago
|
// xlsxabstractooxmlfile_p.h
|
||
|
|
||
|
#ifndef XLSXOOXMLFILE_P_H
|
||
|
#define XLSXOOXMLFILE_P_H
|
||
|
|
||
|
#include "xlsxglobal.h"
|
||
|
|
||
|
#include "xlsxabstractooxmlfile.h"
|
||
|
#include "xlsxrelationships_p.h"
|
||
|
|
||
|
QT_BEGIN_NAMESPACE_XLSX
|
||
|
|
||
|
class AbstractOOXmlFilePrivate
|
||
|
{
|
||
|
Q_DECLARE_PUBLIC(AbstractOOXmlFile)
|
||
|
|
||
|
public:
|
||
|
AbstractOOXmlFilePrivate(AbstractOOXmlFile* q, AbstractOOXmlFile::CreateFlag flag);
|
||
|
virtual ~AbstractOOXmlFilePrivate();
|
||
|
|
||
|
public:
|
||
|
QString filePathInPackage; //such as "xl/worksheets/sheet1.xml"
|
||
|
|
||
|
Relationships *relationships;
|
||
|
AbstractOOXmlFile::CreateFlag flag;
|
||
|
AbstractOOXmlFile *q_ptr;
|
||
|
};
|
||
|
|
||
|
QT_END_NAMESPACE_XLSX
|
||
|
|
||
|
#endif // XLSXOOXMLFILE_P_H
|