summaryrefslogtreecommitdiff
path: root/src/webchannel/qwebchannel_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/webchannel/qwebchannel_p.h')
-rw-r--r--src/webchannel/qwebchannel_p.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/webchannel/qwebchannel_p.h b/src/webchannel/qwebchannel_p.h
index 63f5a0a..954134e 100644
--- a/src/webchannel/qwebchannel_p.h
+++ b/src/webchannel/qwebchannel_p.h
@@ -43,16 +43,19 @@
#define QWEBCHANNEL_P_H
#include "qwebchannelglobal.h"
+#include "qwebchanneltransportinterface.h"
+
+#include <QVector>
QT_BEGIN_NAMESPACE
class QJsonValue;
-class QWebChannelSocket;
+class QWebChannelTransportInterface;
class QMetaObjectPublisher;
struct Q_WEBCHANNEL_EXPORT QWebChannelPrivate
{
- QWebChannelSocket *socket;
+ QVector<QWebChannelTransportInterface*> transports;
QMetaObjectPublisher *publisher;
void sendJSONMessage(const QJsonValue &id, const QJsonValue &data, bool response) const;