5 #include "TCPSession.h"    10    static const int FG_BLACK = 30;
    11    static const int FG_RED = 31;
    12    static const int FG_GREEN = 32;
    13    static const int FG_YELLOW = 33;
    14    static const int FG_BLUE = 34;
    15    static const int FG_MAGENTA = 35;
    16    static const int FG_CYAN = 36;
    17    static const int FG_WHITE = 37;
    19    static const int BG_BLACK = 40;
    20    static const int BG_RED = 41;
    21    static const int BG_GREEN = 42;
    22    static const int BG_YELLOW = 43;
    23    static const int BG_BLUE = 44;
    24    static const int BG_MAGENTA = 45;
    25    static const int BG_CYAN = 46;
    26    static const int BG_WHITE = 47;
    28    static const char esc = 0x1b;
    40       void setCursorLocation(
int x, 
int y);
    41       void setColor(
int color);
    42       void setBackColor(
int color);
    45       void NextLine(
int lines);
    46       void PreviousLine(
int lines);   
    47       void scrollArea(
int start, 
int end);
 
Definition: Command.cpp:3
Definition: TCPSession.h:21
Definition: TCPServer.h:24
Definition: TerminalSession.h:30