Commit fd5c3146af36720b764dc1dbae0f182d95360b89

Authored by Moritz W
1 parent 37bbb7d0

Small cleanup of Hue

Showing 1 changed file with 1 additions and 9 deletions
hueplusplus/include/Hue.h
... ... @@ -114,17 +114,9 @@ public:
114 114 //const std::map<uint8_t, ColorType>& getAllLightTypes();
115 115  
116 116 //! Function that returns all lights that are associated with this bridge
117   - //! \return A vector containing pointers pointing to every HueLight
  117 + //! \return A vector containing references to every HueLight
118 118 std::vector<std::reference_wrapper<const HueLight>> getAllLights();
119 119  
120   - //! Function that returns all light types that are associated with this bridge
121   - //! \return A map mapping light id's to light types for every light
122   - const std::map<uint8_t, ColorType>& getAllLightTypes();
123   -
124   - //! Function that returns all lights that are associated with this bridge
125   - //! \return A vector containing pointers pointing to every HueLight
126   - std::vector<std::unique_ptr<HueLight>> getAllLights();
127   -
128 120 private:
129 121 //! Function that refreshes the local \ref state of the Hue bridge
130 122 void refreshState();
... ...