culturered_client/DisplayPoster/main.cpp

17 lines
269 B
C++
Raw Permalink Normal View History

2024-09-07 03:34:44 +00:00
// FlightController.cpp: 定义应用程序的入口点。
//
#include <QApplication>
#include "MainWindow.h"
using namespace std;
int main(int argc, char* argv[]) {
QApplication app(argc, argv);
MainWindow mainWindow;
mainWindow.show();
return app.exec();
}