mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-30 05:02:52 +08:00
34 lines
603 B
C++
34 lines
603 B
C++
|
// main.cpp
|
||
|
|
||
|
#include <QtGlobal>
|
||
|
#include <QCoreApplication>
|
||
|
#include <QtCore>
|
||
|
#include <QVector>
|
||
|
#include <QVariant>
|
||
|
#include <QDebug>
|
||
|
|
||
|
#include <iostream>
|
||
|
using namespace std;
|
||
|
|
||
|
#include "xlsxdocument.h"
|
||
|
#include "xlsxchartsheet.h"
|
||
|
#include "xlsxcellrange.h"
|
||
|
#include "xlsxchart.h"
|
||
|
#include "xlsxrichstring.h"
|
||
|
#include "xlsxworkbook.h"
|
||
|
using namespace QXlsx;
|
||
|
|
||
|
extern int test(QVector<QVariant> params);
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QCoreApplication app(argc, argv);
|
||
|
|
||
|
QVector<QVariant> testParams;
|
||
|
int ret = test(testParams);
|
||
|
// qDebug() << "test return value : " << ret;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|