allow MqttClient to be constructed with nothing

This commit is contained in:
hsaturn
2021-03-22 02:34:23 +01:00
parent 5cee67095e
commit 169abf8099

View File

@@ -112,6 +112,7 @@ class MqttClient
}; };
public: public:
MqttClient(MqttBroker*); MqttClient(MqttBroker*);
MqttClient() : MqttClient(nullptr) {};
~MqttClient(); ~MqttClient();