CodeLibrary/06_QtCreator_Cplus_SerialDebug_20240425/main.cpp

12 lines
164 B
C++
Raw Permalink Normal View History

2024-06-01 17:39:28 +08:00
#include "widget.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}