diff options
Diffstat (limited to 'src/wrap.h')
| -rwxr-xr-x | src/wrap.h | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -15,15 +15,22 @@ //<<* #include "modl.h" //*>> + #ifdef NCURSES #include "ncur/ncur.h" +#else +#ifdef CLI +#include "cli/cli.h" +#endif #endif + #include "chat/sman.h" #include "sock/sock.h" -#include "stats.h" +#include "monitor/stats.h" #include "time/timr.h" #include "thrd/pool.h" + using namespace std; class dynamic_wrap @@ -73,6 +80,8 @@ public: static void system_message( string s_message ); + static void init_wrapper(map<string,string>* p_start_params); + //<<* static chat* CHAT; #ifdef DATABASE |
