1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-30 05:02:52 +08:00

15 lines
201 B
C++
Raw Normal View History

2018-12-20 15:30:29 +09:00
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Q_INIT_RESOURCE(test);
MainWindow w;
w.show();
return a.exec();
}