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.
 
 

41 lines
654 B

// 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