blob: 0407748c6286ac97608c72561dc283f3c189ccf6 [file] [log] [blame]
Brian Silverman26e4e522015-12-17 01:56:40 -05001/*----------------------------------------------------------------------------*/
2/* Copyright (c) FIRST 2014. All Rights Reserved. */
3/* Open Source Software - may be modified and shared by FRC teams. The code */
4/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
5/*----------------------------------------------------------------------------*/
6
7#pragma once
8
9#include "ColorImage.h"
10
11/**
12 * A color image represented in HSL color space at 3 bytes per pixel.
13 */
14class HSLImage : public ColorImage {
15 public:
16 HSLImage();
17 HSLImage(const char *fileName);
18 virtual ~HSLImage() = default;
19};