source: trunk/FACT++/src/WindowLogColor.h@ 19183

Last change on this file since 19183 was 18868, checked in by tbretz, 7 years ago
Moved colors to a dedicated file.
File size: 572 bytes
Line 
1#ifndef FACT_WindowLogColor
2#define FACT_WindowLogColor
3
4/// Stream manipulators to change the color of a WindowLog stream
5enum WindowLogColor
6{
7 kDefault = 0, ///< Set default colors
8
9 kBlack = 0, ///< Set color Black
10 kRed = 1, ///< Set color Red
11 kGreen = 2, ///< Set color Green
12 kYellow = 3, ///< Set color Yellow
13 kBlue = 4, ///< Set color Blue
14 kMagenta = 5, ///< Set color Magenta
15 kCyan = 6, ///< Set color Cyan
16 kWhite = 7, ///< Set color White
17
18 kBright = 8, ///< Bit to add for bright color
19};
20
21#endif
Note: See TracBrowser for help on using the repository browser.