Index: /trunk/FACT++/src/WindowLog.h
===================================================================
--- /trunk/FACT++/src/WindowLog.h	(revision 18867)
+++ /trunk/FACT++/src/WindowLog.h	(revision 18868)
@@ -11,16 +11,5 @@
 #include "../externals/Queue.h"
 
-/// Stream manipulators to change the color of a WindowLog stream
-enum WindowLogColor
-{
-    kDefault = 0,  ///< Set default colors
-    kRed     = 1,  ///< Set color Red
-    kGreen   = 2,  ///< Set color Green
-    kYellow  = 3,  ///< Set color Yellow
-    kBlue    = 4,  ///< Set color Blue
-    kMagenta = 5,  ///< Set color Magenta
-    kCyan    = 6,  ///< Set color Cyan
-    kWhite   = 7,  ///< Set color White
-};
+#include "WindowLogColor.h"
 
 /// Stream manipulators to change the attributes of a WindowLog stream
Index: /trunk/FACT++/src/WindowLogColor.h
===================================================================
--- /trunk/FACT++/src/WindowLogColor.h	(revision 18868)
+++ /trunk/FACT++/src/WindowLogColor.h	(revision 18868)
@@ -0,0 +1,21 @@
+#ifndef FACT_WindowLogColor
+#define FACT_WindowLogColor
+
+/// Stream manipulators to change the color of a WindowLog stream
+enum WindowLogColor
+{
+    kDefault = 0,  ///< Set default colors
+
+    kBlack   = 0,  ///< Set color Black
+    kRed     = 1,  ///< Set color Red
+    kGreen   = 2,  ///< Set color Green
+    kYellow  = 3,  ///< Set color Yellow
+    kBlue    = 4,  ///< Set color Blue
+    kMagenta = 5,  ///< Set color Magenta
+    kCyan    = 6,  ///< Set color Cyan
+    kWhite   = 7,  ///< Set color White
+
+    kBright  = 8,  ///< Bit to add for bright color
+};
+
+#endif
