diff options
Diffstat (limited to 'src/wrap.h')
| -rwxr-xr-x | src/wrap.h | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -4,14 +4,18 @@ #include "incl.h" #ifdef DATABASE +#include "data/data.h" #endif +#include "chat/chat.h" #include "conf/conf.h" +#include "chat/gcol.h" #include "html.h" #include "logd.h" #include "modl.h" #ifdef NCURSES #include "ncur/ncur.h" #endif +#include "chat/sman.h" #include "sock/sock.h" #include "stats.h" #include "time/timr.h" @@ -21,6 +25,14 @@ using namespace std; class dynamic_wrap { public: + //<<* + chat* CHAT; +#ifdef DATABASE + data* DATA; +#endif + gcol* GCOL; + sman* SMAN; + //*>> conf* CONF; html* HTML; @@ -49,6 +61,17 @@ public: static void system_message( string s_message ); + //<<* + static chat* CHAT; +#ifdef DATABASE + static data* DATA; +#endif + static gcol* GCOL; + static sman* SMAN; +#ifdef IRCBOT + static ybot* YBOT; +#endif + //*>> static conf* CONF; static html* HTML; |
