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
32
33
34
35
36
37
38
39
40
41
| // xlsxcell_p.h
|
| #ifndef XLSXCELL_P_H
| #define XLSXCELL_P_H
|
| #include <QtGlobal>
| #include <QObject>
| #include <QList>
|
| #include "xlsxglobal.h"
| #include "xlsxcell.h"
| #include "xlsxcellrange.h"
| #include "xlsxrichstring.h"
| #include "xlsxcellformula.h"
|
| QT_BEGIN_NAMESPACE_XLSX
|
| class CellPrivate
| {
| Q_DECLARE_PUBLIC(Cell)
| public:
| CellPrivate(Cell *p);
| CellPrivate(const CellPrivate * const cp);
| public:
| Worksheet *parent;
| Cell *q_ptr;
| public:
| Cell::CellType cellType;
| QVariant value;
|
| CellFormula formula;
| Format format;
|
| RichString richString;
|
| qint32 styleNumber;
| };
|
| QT_END_NAMESPACE_XLSX
|
| #endif // XLSXCELL_P_H
|
|