diff --git a/hueplusplus/include/Hue.h b/hueplusplus/include/Hue.h index 37bec0a..f0d8530 100755 --- a/hueplusplus/include/Hue.h +++ b/hueplusplus/include/Hue.h @@ -175,12 +175,12 @@ private: Json::Value state; //!< The state of the hue bridge as it is returned from it std::map< uint8_t, HueLight > lights; //!< Maps ids to HueLights that are controlled by this bridge - std::shared_ptr simpleBrightnessStrategy; //!< Strategy that is used for controlling the brightness of lights - std::shared_ptr simpleColorHueStrategy; //!< Strategy that is used for controlling the color of lights - std::shared_ptr extendedColorHueStrategy; //!< Strategy that is used for controlling the color of lights - std::shared_ptr simpleColorTemperatureStrategy; //!< Strategy that is used for controlling the color temperature of lights - std::shared_ptr extendedColorTemperatureStrategy; //!< Strategy that is used for controlling the color temperature of lights - std::shared_ptr http_handler; //!< A IHttpHandler that is used to communicate with the bridge + std::shared_ptr simpleBrightnessStrategy; //!< Strategy that is used for controlling the brightness of lights + std::shared_ptr simpleColorHueStrategy; //!< Strategy that is used for controlling the color of lights + std::shared_ptr extendedColorHueStrategy; //!< Strategy that is used for controlling the color of lights + std::shared_ptr simpleColorTemperatureStrategy; //!< Strategy that is used for controlling the color temperature of lights + std::shared_ptr extendedColorTemperatureStrategy; //!< Strategy that is used for controlling the color temperature of lights + std::shared_ptr http_handler; //!< A IHttpHandler that is used to communicate with the bridge }; #endif