2024-09-12 17:31:39 +08:00
|
|
|
#include "mainwindow.h"
|
|
|
|
|
|
|
|
#include <QApplication>
|
2024-09-14 11:18:18 +08:00
|
|
|
#include <QDebug>
|
2024-09-12 17:31:39 +08:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
2024-09-14 11:18:18 +08:00
|
|
|
MainWindow w;
|
|
|
|
w.show();
|
2024-09-12 17:31:39 +08:00
|
|
|
return a.exec();
|
|
|
|
}
|