mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-16 04:42:53 +08:00
18 lines
230 B
C++
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;
|
|
}
|