1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-16 04:42:53 +08:00
QXlsx/Copycat/main.cpp
2018-09-28 21:20:29 +09:00

18 lines
230 B
C++

// main.cpp
#include <QtGlobal>
#include "MainWindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
int ret = a.exec();
return ret;
}