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.
23 lines
467 B
23 lines
467 B
#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
|
|
|