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.
|
|
|
#include <QCoreApplication>
|
|
|
|
#include "include/XlsxXmlConverter.h"
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
QCoreApplication a(argc, argv);
|
|
|
|
|
|
|
|
XlsxXmlConverter convert;
|
|
|
|
QString sourceXls;
|
|
|
|
QString patternXML;
|
|
|
|
|
|
|
|
//if(argc == 2)
|
|
|
|
//{
|
|
|
|
//sourceXls = patternXML = argv[1];
|
|
|
|
//}
|
|
|
|
//if(argc == 3)
|
|
|
|
//{
|
|
|
|
//sourceXls = argv[1];
|
|
|
|
//patternXML = argv[2];
|
|
|
|
//}
|
|
|
|
|
|
|
|
convert.initPath("BPresetValue.xlsx", "Pattern.xml", "");
|
|
|
|
//convert.initPath(sourceXls, patternXML, "");
|
|
|
|
convert.readXlsx();
|
|
|
|
convert.readPattern();
|
|
|
|
convert.wrtiteXMl();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|