mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-16 04:42:53 +08:00
db608768a3
This project has no standard on coding style, some files use tab, others space, and new Merge Requests usually break the current formatting with this clang-format we can easy this.
32 lines
562 B
C++
32 lines
562 B
C++
// main.cpp
|
|
|
|
#include <iostream>
|
|
|
|
#include <QCoreApplication>
|
|
#include <QDebug>
|
|
#include <QVariant>
|
|
#include <QVector>
|
|
#include <QtCore>
|
|
#include <QtGlobal>
|
|
using namespace std;
|
|
|
|
#include "xlsxcellrange.h"
|
|
#include "xlsxchart.h"
|
|
#include "xlsxchartsheet.h"
|
|
#include "xlsxdocument.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);
|
|
|
|
return 0;
|
|
}
|