diff options
| author | admin (centauri.fritz.box) <puppet@mx.buetow.org> | 2014-07-01 20:17:18 +0200 |
|---|---|---|
| committer | admin (centauri.fritz.box) <puppet@mx.buetow.org> | 2014-07-01 20:17:18 +0200 |
| commit | 79f67cf524bf8c9069241475e9365362066ca3ab (patch) | |
| tree | 2cb149d26c3faa3c1dba7161c30f07ec61884e22 /incl.h | |
| parent | 3a96ab7e91145b367d05e98533b5f426f762f83f (diff) | |
| parent | 4c578b7bdc0cb1492254866434235da583aec0a4 (diff) | |
Merge remote-tracking branch 'remotes/github/ychat-0.5' into ychat-0.5ychat-0.5
Diffstat (limited to 'incl.h')
| -rw-r--r-- | incl.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +// contains header files which are included by all classes. + +// include some std headers. +#include <iostream> + +// since thread synchronization is a big issue this header needs +// to be included by every other file too. +#include <pthread.h> + +// std::string. +#include <string> + +// include all the custom global variables. +#include "glob.h" +// include all the custom messages. +#include "msgs.h" |
