1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-30 05:02:52 +08:00
QXlsx/chartsquestions/sat_calc.h

38 lines
723 B
C
Raw Normal View History

2018-12-20 15:30:29 +09:00
#ifndef SAT_CALC_H
#define SAT_CALC_H
#include "xlsxcellrange.h"
#include "xlsxchart.h"
#include "xlsxdocument.h"
#include "xlsxformat.h"
#include <iostream>
#include <QColor>
#include <QString>
#include <QTextStream>
#include <QtCore>
2018-12-20 15:30:29 +09:00
using namespace QXlsx;
class sat_calc
{
private:
QString chromatogram;
double precision;
QString report_file;
QString sheet_name;
int output_line_count;
public:
void generate_report(void);
void get_chromatogram(const QString &chromatogram);
void get_report_file(const QString &report_file);
void get_sheet_name(const QString &sheet_name);
void get_precision(const double precision);
2018-12-20 15:30:29 +09:00
sat_calc();
~sat_calc();
};
#endif // SAT_CALC_H