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.
26 lines
474 B
26 lines
474 B
2 years ago
|
// xlsxchartsheet_p.h
|
||
|
|
||
|
#ifndef XLSXCHARTSHEET_P_H
|
||
|
#define XLSXCHARTSHEET_P_H
|
||
|
|
||
|
#include <QtGlobal>
|
||
|
|
||
|
#include "xlsxglobal.h"
|
||
|
#include "xlsxchartsheet.h"
|
||
|
#include "xlsxabstractsheet_p.h"
|
||
|
|
||
|
QT_BEGIN_NAMESPACE_XLSX
|
||
|
|
||
|
class ChartsheetPrivate : public AbstractSheetPrivate
|
||
|
{
|
||
|
Q_DECLARE_PUBLIC(Chartsheet)
|
||
|
public:
|
||
|
ChartsheetPrivate(Chartsheet *p, Chartsheet::CreateFlag flag);
|
||
|
~ChartsheetPrivate();
|
||
|
|
||
|
Chart *chart;
|
||
|
};
|
||
|
|
||
|
QT_END_NAMESPACE_XLSX
|
||
|
#endif // XLSXCHARTSHEET_P_H
|