2019-10-05 00:18:37 +09:00
|
|
|
// main.cpp
|
|
|
|
|
2023-09-04 00:46:33 -03:00
|
|
|
#include <iostream>
|
|
|
|
|
2019-10-05 00:18:37 +09:00
|
|
|
#include <QCoreApplication>
|
2023-09-04 00:46:33 -03:00
|
|
|
#include <QDebug>
|
2019-10-05 00:18:37 +09:00
|
|
|
#include <QVariant>
|
2023-09-04 00:46:33 -03:00
|
|
|
#include <QVector>
|
|
|
|
#include <QtCore>
|
|
|
|
#include <QtGlobal>
|
2019-10-05 00:18:37 +09:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#include "xlsxcellrange.h"
|
|
|
|
#include "xlsxchart.h"
|
2023-09-04 00:46:33 -03:00
|
|
|
#include "xlsxchartsheet.h"
|
|
|
|
#include "xlsxdocument.h"
|
2019-10-05 00:18:37 +09:00
|
|
|
#include "xlsxrichstring.h"
|
|
|
|
#include "xlsxworkbook.h"
|
|
|
|
using namespace QXlsx;
|
|
|
|
|
|
|
|
extern int test(QVector<QVariant> params);
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2023-09-04 00:46:33 -03:00
|
|
|
QCoreApplication app(argc, argv);
|
2019-10-05 00:18:37 +09:00
|
|
|
|
2023-09-04 00:46:33 -03:00
|
|
|
QVector<QVariant> testParams;
|
|
|
|
int ret = test(testParams);
|
2019-10-05 00:18:37 +09:00
|
|
|
|
2023-09-04 00:46:33 -03:00
|
|
|
return 0;
|
2019-10-05 00:18:37 +09:00
|
|
|
}
|