2017-10-27 20:49:06 +08:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
|
2017-10-29 09:45:37 +08:00
|
|
|
int main(int argc, char* argv[])
|
2017-10-27 20:49:06 +08:00
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
MainWindow w;
|
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|
2017-10-29 09:45:37 +08:00
|
|
|
|