diff options
| author | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:46 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:46 +0200 |
| commit | eab0b1c2d649fa16707b24cd2a91f195078167b0 (patch) | |
| tree | e960f351655305e3911089ff75677caef364a280 /src/wrap.h | |
| parent | 07706f56cd421bf8b101a5c0fe44674d36e161a0 (diff) | |
tagging ychat-0.7.2ychat-0.7.2
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; |
