Index: CloudConnect/CloudConnectController.h =================================================================== diff -u -rc6a4b63a37f3beb1e8a51702ec3a56a1c32cfe8f -r6d2ef8c97f4bb34204e95811839b3995000c47c1 --- CloudConnect/CloudConnectController.h (.../CloudConnectController.h) (revision c6a4b63a37f3beb1e8a51702ec3a56a1c32cfe8f) +++ CloudConnect/CloudConnectController.h (.../CloudConnectController.h) (revision 6d2ef8c97f4bb34204e95811839b3995000c47c1) @@ -22,7 +22,6 @@ #include #include -#include "CloudConnectClient.h" #include "CloudConnectFrame.h" #include "CanInterface.h" #include "CanMessage.h" @@ -42,7 +41,6 @@ explicit CloudConnectController(const QString &configPath, const QString &msgHandlingPath, QObject *parent = nullptr); ~CloudConnectController(); - void connectToAgent(); bool listenForApp(); Q_SIGNALS: @@ -80,13 +78,10 @@ Can::MessageDispatcher _dispatcher; QMap> _msgCache; QHash _msgHandling; - CloudConnectClient _agentInterface; - QThread _agentThread; CloudConnectServer _appServer; quint16 _txSequence = 0; private Q_SLOTS: void onFrameReceive(const QCanBusFrame frame); void onMessageReceive(const Can::Message &msg); - void onAgentDisconnect(); };