diff options
| author | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:45 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2013-04-06 13:14:45 +0200 |
| commit | d34015c5ba231b95de20e9fcd7a33c5b2b9a1006 (patch) | |
| tree | ceac33bd27e3b1158a0ac4e17f7fd7e5e6473fea /src/incl.h | |
| parent | c507ce3198ea4d822832cc8740f0128df8873c02 (diff) | |
tagging ychat-0.5.3ychat-0.5.3
Diffstat (limited to 'src/incl.h')
| -rwxr-xr-x | src/incl.h | 19 |
1 files changed, 11 insertions, 8 deletions
@@ -1,13 +1,16 @@ -#include <pthread.h> +// contains header files which are included by all classes. + +// include some std headers. #include <iostream> -#include <string> -#include <map> -#include "glob.h" +// since thread synchronization is a big issue this header needs +// to be included by every other file too. +#include <pthread.h> -#ifdef NCURSES -#include <ncurses.h> -#endif +// std::string. +#include <string> +// include all the custom global variables. +#include "glob.h" +// include all the custom messages. #include "msgs.h" -#include "wrap.h" |
