Enumerations | |
| enum class | Code { FG_DEFAULT = 39 , FG_BLACK = 30 , FG_RED = 31 , FG_GREEN = 32 , FG_YELLOW = 33 , FG_BLUE = 34 , FG_MAGENTA = 35 , FG_CYAN = 36 , FG_LIGHT_GRAY = 37 , FG_DARK_GRAY = 90 , FG_LIGHT_RED = 91 , FG_LIGHT_GREEN = 92 , FG_LIGHT_YELLOW = 93 , FG_LIGHT_BLUE = 94 , FG_LIGHT_MAGENTA = 95 , FG_LIGHT_CYAN = 96 , FG_WHITE = 97 , BG_RED = 41 , BG_GREEN = 42 , BG_BLUE = 44 , BG_DEFAULT = 49 } |
Functions | |
| std::ostream & | operator<< (std::ostream &os, const Code &code) |
| std::string | operator+ (const std::string &string, const Code &code) |
| std::string | operator+ (const Code &code, const std::string &string) |
|
strong |
Definition at line 68 of file Logger.h.
| std::string Color::operator+ | ( | const Code & | code, |
| const std::string & | string ) |
Definition at line 172 of file Logger.cpp.
References logger::Logger::disableColorLog.
| std::string Color::operator+ | ( | const std::string & | string, |
| const Code & | code ) |
Definition at line 168 of file Logger.cpp.
References logger::Logger::disableColorLog.
Referenced by utils::createCommandLineOptions(), and CLI::ConfigFormatter::to_config().
| std::ostream & Color::operator<< | ( | std::ostream & | os, |
| const Code & | code ) |
Definition at line 164 of file Logger.cpp.
References logger::Logger::disableColorLog.