diff options
Diffstat (limited to 'tuiclient/mainwindow.h')
-rw-r--r-- | tuiclient/mainwindow.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tuiclient/mainwindow.h b/tuiclient/mainwindow.h index cff1c75..0c80c30 100644 --- a/tuiclient/mainwindow.h +++ b/tuiclient/mainwindow.h @@ -29,13 +29,13 @@ #include <ncurses.h> #include <sys/types.h> - -using namespace std; - #include "twindow.h" #include "helpwindow.h" +#include "distfilewindow.h" #include "scrollwindow.h" +using namespace std; + const uint CONNECTION_LINES=5; const uint MAX_LINES=200; @@ -45,6 +45,7 @@ class Tmainwindow: public Twindow{ Thelp_window help_win; Tscroll_window log_win; Tscroll_window error_log_win; + Tdistfile_window distfiles_win; bool exit_flag; bool connected_status; string screenlines[200]; @@ -54,6 +55,7 @@ class Tmainwindow: public Twindow{ help_win(), log_win(), error_log_win(), + distfiles_win(), exit_flag(FALSE), connected_status(FALSE), attempt_num(0) |