Colorspace.hpp 160 B

12345678910
  1. #ifndef COLORSPACE__HPP
  2. #define COLORSPACE__HPP
  3. class Colorspace {
  4. public:
  5. static const unsigned int RGB = 0;
  6. static const unsigned int LCH = 1;
  7. };
  8. #endif