QtExamples/QtTcpEx/ExTcpServer/main.cpp

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

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