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

int main(int argc, char *argv[])
{
	QCoreApplication a(argc, argv);
	EchoClient client(QUrl("ws://localhost:1234"));

	Q_UNUSED(client);

	return a.exec();
}