summaryrefslogtreecommitdiff
path: root/src/webchannel/webchannel.pro
diff options
context:
space:
mode:
authorMilian Wolff <milian.wolff@kdab.com>2013-12-28 19:20:58 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-08 15:59:28 +0100
commit66c0d916131c1e9e896705971f20385c75e753a2 (patch)
tree59b25cd7b9bc1ff688ff46c2b4f4c21fa60019cf /src/webchannel/webchannel.pro
parent318576f0cc0ebef78c5b27106b1a8429eb54fac8 (diff)
downloadqtwebchannel-66c0d916131c1e9e896705971f20385c75e753a2.tar.gz
Simplify usage of QWebChannel on the server side.
This is achieved by hiding the MetaObjectPublisher completely as private API. The QWebChannel is the only publisher API and now handles both the socket as well as the publisher internally. This now allows us to create a proper QML api in the new QmlWebChannel. Change-Id: I3096364af8485353ca9bc19df4a81a8e4552c3d7 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/webchannel/webchannel.pro')
-rw-r--r--src/webchannel/webchannel.pro9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/webchannel/webchannel.pro b/src/webchannel/webchannel.pro
index 376711d..0678346 100644
--- a/src/webchannel/webchannel.pro
+++ b/src/webchannel/webchannel.pro
@@ -11,17 +11,20 @@ OTHER_FILES = \
qwebchannel.js
PUBLIC_HEADERS += \
- qwebchannel.h \
- qmetaobjectpublisher.h
+ qwebchannel.h
PRIVATE_HEADERS += \
+ qwebchannel_p.h \
+ qmetaobjectpublisher_p.h \
qwebsocketserver_p.h \
+ qwebchannelsocket_p.h \
variantargument_p.h \
signalhandler_p.h
SOURCES += \
qwebchannel.cpp \
qmetaobjectpublisher.cpp \
- qwebsocketserver.cpp
+ qwebsocketserver.cpp \
+ qwebchannelsocket.cpp
HEADERS += $$PUBLIC_HEADERS $$PRIVATE_HEADERS