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.
24 lines
467 B
24 lines
467 B
2 years ago
|
#ifndef XLSXXMLCONVERTER_H
|
||
|
#define XLSXXMLCONVERTER_H
|
||
|
#include <QString>
|
||
|
#include <QList>
|
||
|
|
||
|
class XlsxXmlConverter
|
||
|
{
|
||
|
private:
|
||
|
QString xlsxFilePath;
|
||
|
QString xmlPatternFilePath;
|
||
|
QString xmlOutPutFilePath;
|
||
|
QList<QStringList> xlsxData;
|
||
|
QList<QString> patternList;
|
||
|
|
||
|
public:
|
||
|
XlsxXmlConverter();
|
||
|
void initPath(QString xlsxPath, QString patternFilePath, QString outputFilePath);
|
||
|
void readXlsx();
|
||
|
void readPattern();
|
||
|
void wrtiteXMl();
|
||
|
};
|
||
|
|
||
|
#endif //XLSXXMLCONVERTER_H
|