From 30421bd808049564f64eeef2579b9f6bea9b4ca7 Mon Sep 17 00:00:00 2001 From: AEtHeLsYn Date: Tue, 22 Dec 2015 09:56:17 +0100 Subject: [PATCH] Create ColorCorrection.h Former-commit-id: f52df680a7f056d37d23e9f7d49fa713d8b48949 --- include/hyperion/ColorCorrection.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 include/hyperion/ColorCorrection.h diff --git a/include/hyperion/ColorCorrection.h b/include/hyperion/ColorCorrection.h new file mode 100644 index 00000000..51ae0605 --- /dev/null +++ b/include/hyperion/ColorCorrection.h @@ -0,0 +1,18 @@ +#pragma once + +// STL includes +#include + +// Utils includes +#include + +class ColorCorrection +{ +public: + + /// Unique identifier for this color correction + std::string _id; + + /// The RGB correction + RgbChannelCorrection _rgbCorrection; +};