From 7468c82c4c1ead04ffba546d78bef4db1c103a7b Mon Sep 17 00:00:00 2001 From: Bartosz Wieczorek Date: Tue, 5 Aug 2025 12:28:22 +0200 Subject: [PATCH] fix --- services/floorheat_hub/mqtt_client.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/services/floorheat_hub/mqtt_client.hpp b/services/floorheat_hub/mqtt_client.hpp index ef2b36e..c9d277c 100644 --- a/services/floorheat_hub/mqtt_client.hpp +++ b/services/floorheat_hub/mqtt_client.hpp @@ -22,8 +22,13 @@ class AsyncMqttClient { struct CallbackData { /* topic */ std::string_view topic; + + /* response topic */ + std::string_view responseTopic; + /* value assosiated to request */ const boost::json::value & value; + /* memory_resource of client */ };