Commit patch to not break on spaces.
[bowtie.git] / color.h
1 /*
2  * color.h
3  *
4  *  Created on: Oct 18, 2009
5  *      Author: Ben Langmead
6  */
7
8 #ifndef COLOR_H_
9 #define COLOR_H_
10
11 #include <string>
12
13 enum {
14         COLOR_RED = 1,
15         COLOR_GREEN,
16         COLOR_YELLOW,
17         COLOR_BLUE,
18         COLOR_WHITE = 7
19 };
20
21
22 void appendConsoleColor(std::string& s, int color);
23 void setConsoleColor(int color);
24 void appendColor(std::string& s, char color);
25 void printColor(char color);
26
27 #endif /* COLOR_H_ */