1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef XTQ_H #define XTQ_H #include <QTcpSocket> #include <QtQmlIntegration/qqmlintegration.h> class RelayConnection : public QObject { Q_OBJECT QML_ELEMENT public: QTcpSocket *socket; ///< Buffered relay socket }; #endif // XTQ_H