wumu
2024-03-01 6680ad0c95b04ee59bab0b7c1cd65351f279b7bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// 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