1 /*****************************************************************************
2 
3         ColorFamily.h
4         Author: Laurent de Soras, 2015
5 
6 --- Legal stuff ---
7 
8 This program is free software. It comes without any warranty, to
9 the extent permitted by applicable law. You can redistribute it
10 and/or modify it under the terms of the Do What The Fuck You Want
11 To Public License, Version 2, as published by Sam Hocevar. See
12 http://sam.zoy.org/wtfpl/COPYING for more details.
13 
14 *Tab=3***********************************************************************/
15 
16 
17 
18 #pragma once
19 #if ! defined (fmtcl_ColorFamily_HEADER_INCLUDED)
20 #define	fmtcl_ColorFamily_HEADER_INCLUDED
21 
22 #if defined (_MSC_VER)
23 	#pragma warning (4 : 4250)
24 #endif
25 
26 
27 
28 /*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
29 
30 
31 
32 namespace fmtcl
33 {
34 
35 
36 
37 enum ColorFamily
38 {
39 	ColorFamily_INVALID = -1,
40 
41 	ColorFamily_GRAY = 0,
42 	ColorFamily_RGB,
43 	ColorFamily_YUV,
44 	ColorFamily_YCGCO,
45 
46 	ColorFamily_NBR_ELT
47 
48 };	// enum ColorFamily
49 
50 
51 
52 }	// namespace fmtcl
53 
54 
55 
56 //#include "fmtcl/ColorFamily.hpp"
57 
58 
59 
60 #endif	// fmtcl_ColorFamily_HEADER_INCLUDED
61 
62 
63 
64 /*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
65