CodeLibrary/05_QtCreator_Cplus_TCPServer_20240423/main.cpp

19 lines
250 B
C++

/*
* Code: Qt 学习, TCP 服务器
* Date: 2024-04-23
* Design by JRNitre
*
* */
#include "widget.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}