aboutsummaryrefslogtreecommitdiffstats
path: root/src/webchannel/qwebchannelabstracttransport.h
diff options
context:
space:
mode:
authorMilian Wolff <milian.wolff@kdab.com>2014-07-16 17:39:31 +0200
committerSumedha Widyadharma <sumedha.widyadharma@basyskom.com>2014-08-01 09:16:16 +0200
commitb84e46090b5230d7ebcdbdabd8c03a9ae5d2f860 (patch)
tree9687c3b47f4e77e931916a8afe1d516d3b280101 /src/webchannel/qwebchannelabstracttransport.h
parent5051411b92b4aca4ed5ec462e7b0e52af4d3951e (diff)
Add documentation for the QtWebChannel module.
Please proof-read it and tell me what needs to be improved. I assume most people will probably not use the QWebChannel directly. Rather, they will only consume its features indirectly through the integration in QtWebKit/QtWebEngine. Thus the documentation here is for QWebChannel as a library. User-end documentation should be added to QtWebKit, I think. Change-Id: I259c204e24331271b8dc74ea11695988234a79d3 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/webchannel/qwebchannelabstracttransport.h')
-rw-r--r--src/webchannel/qwebchannelabstracttransport.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/webchannel/qwebchannelabstracttransport.h b/src/webchannel/qwebchannelabstracttransport.h
index a13851c..b98ba3f 100644
--- a/src/webchannel/qwebchannelabstracttransport.h
+++ b/src/webchannel/qwebchannelabstracttransport.h
@@ -56,15 +56,9 @@ public:
virtual ~QWebChannelAbstractTransport();
public Q_SLOTS:
- /**
- * Send a text @p message to the remote client.
- */
virtual void sendMessage(const QJsonObject &message) = 0;
Q_SIGNALS:
- /**
- * Emitted when a new text message was received from the remote client.
- */
void messageReceived(const QJsonObject &message, QWebChannelAbstractTransport *transport);
};