mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
19 lines
275 B
C++
19 lines
275 B
C++
#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;
|
|
};
|