Commit ee78d8b4fe6423b69e720cf8bae44f1bb41291a9

Authored by Moritz W
1 parent e9784d61

Revisit include usage and fix some typos

hueplusplus/include/BrightnessStrategy.h
... ... @@ -24,7 +24,7 @@
24 24  
25 25 class HueLight;
26 26  
27   -//! Virtual base class for all BrightnessStrategys
  27 +//! Virtual base class for all BrightnessStrategies
28 28 class BrightnessStrategy
29 29 {
30 30 public:
... ...
hueplusplus/include/ColorHueStrategy.h
... ... @@ -24,7 +24,7 @@
24 24  
25 25 class HueLight;
26 26  
27   -//! Virtual base class for all ColorHueStrategys
  27 +//! Virtual base class for all ColorHueStrategies
28 28 class ColorHueStrategy
29 29 {
30 30 public:
... ...
hueplusplus/include/ColorTemperatureStrategy.h
... ... @@ -24,7 +24,7 @@
24 24  
25 25 class HueLight;
26 26  
27   -//! Virtual base class for all ColorTemperatureStrategys
  27 +//! Virtual base class for all ColorTemperatureStrategies
28 28 class ColorTemperatureStrategy
29 29 {
30 30 public:
... ...
hueplusplus/include/ExtendedColorHueStrategy.h
... ... @@ -20,6 +20,7 @@
20 20 #ifndef _EXTENDED_COLOR_HUE_STRATEGY_H
21 21 #define _EXTENDED_COLOR_HUE_STRATEGY_H
22 22  
  23 +#include "HueLight.h"
23 24 #include "SimpleColorHueStrategy.h"
24 25  
25 26 //! Class extending the implementation of SimpleColorHueStrategy
... ...
hueplusplus/include/SimpleColorHueStrategy.h
... ... @@ -20,6 +20,7 @@
20 20 #ifndef _SIMPLE_COLOR_HUE_STRATEGY_H
21 21 #define _SIMPLE_COLOR_HUE_STRATEGY_H
22 22  
  23 +#include "ColorHueStrategy.h"
23 24 #include "HueLight.h"
24 25  
25 26 //! Class implementing the functions of ColorHueStrategy
... ...