From e9ec067e628564e0b065c625dcd7e695857706ac Mon Sep 17 00:00:00 2001 From: Bernd Lamecker Date: Wed, 17 Sep 2014 15:30:36 +0200 Subject: Added some more examples Implemented a C++ Server, providing a chatservice through a simple QObject using QWebChannel and also both a QML and HTML Client to interact with the server. The examples show how to use properties, signals and methods, separated in server and clients. Change-Id: I20c84c2104d0bb599ead1771aad499e59657f83e Reviewed-by: Milian Wolff --- examples/webchannel/chatserver-cpp/chatserver-cpp.pro | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 examples/webchannel/chatserver-cpp/chatserver-cpp.pro (limited to 'examples/webchannel/chatserver-cpp/chatserver-cpp.pro') diff --git a/examples/webchannel/chatserver-cpp/chatserver-cpp.pro b/examples/webchannel/chatserver-cpp/chatserver-cpp.pro new file mode 100644 index 0000000..ce6a3f7 --- /dev/null +++ b/examples/webchannel/chatserver-cpp/chatserver-cpp.pro @@ -0,0 +1,18 @@ +TARGET = chatserver + +TEMPLATE = app + +QT += core websockets webchannel +QT -= gui + +CONFIG += console + +SOURCES += main.cpp \ + chatserver.cpp \ + ../shared/websocketclientwrapper.cpp \ + ../shared/websockettransport.cpp + +HEADERS += \ + chatserver.h \ + ../shared/websocketclientwrapper.h \ + ../shared/websockettransport.h -- cgit v1.2.1