19 |
|
|
20 |
|
#include <menes-api/console.hpp> |
21 |
|
#include <menes-api/files.hpp> |
22 |
+ |
#include <menes-api/timing.hpp> |
23 |
|
#include <menes-dbi/connection.hpp> |
24 |
|
#include <menes-dbi/resultset.hpp> |
25 |
|
#include <menes-etl/fnbind.hpp> |
37 |
|
#include <menes-xml/textwriter.hpp> |
38 |
|
|
39 |
|
enum Color { reset, bright, dim, underscore = 4, blink, reverse = 7, hidden, |
40 |
< |
black = 30, red, green, yellow, blue, magenta, cyan, white, _black = 40, |
41 |
< |
_red, _green, _yellow, _blue, _magenta, _cyan, _white }; |
40 |
> |
black = 30, red, green, yellow, blue, magenta, cyan, white, |
41 |
> |
_black = 40, _red, _green, _yellow, _blue, _magenta, _cyan, _white }; |
42 |
|
|
43 |
|
inline std::ostream& operator<<(std::ostream& sout, Color color) |
44 |
|
{ |
45 |
< |
sout << "\033[" << unsigned(color) << 'm'; |
45 |
< |
|
46 |
< |
return sout; |
45 |
> |
return sout << "\033[" << unsigned(color) << 'm'; |
46 |
|
} |
47 |
|
|
48 |
|
#include "Buddy.hpp" |