summaryrefslogtreecommitdiff
path: root/examples/websocketserver/main.cpp
blob: d5060ae61389eef32f72e9220b02850850b057a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <QCoreApplication>
#include "helloworldserver.h"

int main(int argc, char *argv[])
{
	QCoreApplication a(argc, argv);
	HelloWorldServer server(1234);

	Q_UNUSED(server);

	return a.exec();
}