Update ColorTransform.h

Former-commit-id: 4c944b94cf26720906efa63ea4266064dc092134
This commit is contained in:
AEtHeLsYn 2016-03-10 17:57:52 +01:00
parent 3370cc6271
commit b0d74b2dd8

View File

@ -6,6 +6,7 @@
// Utils includes
#include <utils/RgbChannelTransform.h>
#include <utils/HsvTransform.h>
#include <utils/HslTransform.h>
class ColorTransform
{
@ -23,4 +24,7 @@ public:
/// The HSV Transform for applying Saturation and Value transforms
HsvTransform _hsvTransform;
/// The HSL Transform for applying Saturation and Value transforms
HslTransform _hslTransform;
};