mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-16 04:42:53 +08:00
35 lines
662 B
C++
35 lines
662 B
C++
// main.cpp
|
|
// QXlsx // MIT License // https://github.com/j2doll/QXlsx
|
|
|
|
#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;
|
|
}
|
|
|