QtExamples/QtTcpEx/ExTcpServer/main.cpp
2019-11-20 22:59:23 +08:00

12 lines
174 B
C++

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