Go to the documentation of this file.
7 #if !defined(MQTT_DEPRECATED_HPP)
8 #define MQTT_DEPRECATED_HPP
10 #if defined(MQTT_USE_DEPRECATED)
12 #define MQTT_DEPRECATED(msg)
16 #if __cplusplus >= 201402L
20 #define MQTT_DEPRECATED(msg) __declspec(deprecated(msg))
24 #define MQTT_DEPRECATED(msg) [[deprecated(msg)]]
30 #define MQTT_DEPRECATED(msg)