feat: 创建一个空的 TcpServer 的项目

This commit is contained in:
touwoyimuli
2019-11-20 22:59:23 +08:00
parent 1bbfcde872
commit 650dbd1186
6 changed files with 111 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include "ExTcpServer.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
ExTcpServer w;
w.show();
return a.exec();
}