1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-16 04:42:53 +08:00
QXlsx/HelloExcel/main.cpp

19 lines
250 B
C++
Raw Normal View History

2017-08-16 20:58:34 +09:00
//
// main.cpp
//
#include <QCoreApplication>
#include <QtCore>
#include "xlsxdocument.h"
2017-08-26 02:53:20 +00:00
QTXLSX_USE_NAMESPACE
2017-08-16 20:58:34 +09:00
int main(int argc, char *argv[])
{
2017-08-26 02:53:20 +00:00
Document xlsx;
2017-08-16 20:58:34 +09:00
xlsx.write("A1", "Hello Qt!");
xlsx.saveAs("Test.xlsx");
return 0;
}