Brian Silverman | 26e4e52 | 2015-12-17 01:56:40 -0500 | [diff] [blame^] | 1 | /*----------------------------------------------------------------------------*/ |
| 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 | */ |
| 14 | class HSLImage : public ColorImage { |
| 15 | public: |
| 16 | HSLImage(); |
| 17 | HSLImage(const char *fileName); |
| 18 | virtual ~HSLImage() = default; |
| 19 | }; |