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

18 lines
230 B
C++
Raw Normal View History

2018-09-27 17:41:21 +09:00
// main.cpp
#include <QtGlobal>
#include "MainWindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
2018-09-28 21:20:29 +09:00
int ret = a.exec();
return ret;
2018-09-27 17:41:21 +09:00
}