Create ColorCorrection.h

Former-commit-id: f52df680a7f056d37d23e9f7d49fa713d8b48949
This commit is contained in:
AEtHeLsYn 2015-12-22 09:56:17 +01:00
parent d5529e86df
commit 30421bd808
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#pragma once
// STL includes
#include <string>
// Utils includes
#include <utils/RgbChannelCorrection.h>
class ColorCorrection
{
public:
/// Unique identifier for this color correction
std::string _id;
/// The RGB correction
RgbChannelCorrection _rgbCorrection;
};