Add pagination to b_manage
This commit is contained in:
@@ -12,4 +12,19 @@ public:
|
||||
static std::string WHITE() { return "\033[1;37m"; }
|
||||
static std::string IBLUE() { return "\033[0;94m"; }
|
||||
static std::string RESET() { return "\033[0m"; }
|
||||
static std::string BOLD() { return "\033[1m"; }
|
||||
static std::string UNDERLINE() { return "\033[4m"; }
|
||||
static std::string BLINK() { return "\033[5m"; }
|
||||
static std::string REVERSE() { return "\033[7m"; }
|
||||
static std::string CONCEALED() { return "\033[8m"; }
|
||||
static std::string BLACK() { return "\033[1;30m"; }
|
||||
static std::string IBROWN() { return "\033[0;93m"; }
|
||||
static std::string IRED() { return "\033[0;91m"; }
|
||||
static std::string IWHITE() { return "\033[0;97m"; }
|
||||
static std::string IGREEN() { return "\033[0;92m"; }
|
||||
static std::string IYELLOW() { return "\033[0;93m"; }
|
||||
static std::string ICYAN() { return "\033[0;96m"; }
|
||||
static std::string IBLACK() { return "\033[0;90m"; }
|
||||
static std::string IMAGENTA() { return "\033[0;95m"; }
|
||||
static std::string CLRSCR() { return "\033[2J\033[1;1H"; }
|
||||
};
|
||||
|
Reference in New Issue
Block a user