summaryrefslogtreecommitdiff
path: root/src/incl.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
commitb3a99e6e15af3be25394e66d1138bb2682f565c3 (patch)
tree0206b0018cd075cc8b0d8d4f34a1d27c38598f36 /src/incl.h
parent5b7605790328c6c0f473296df444d0f4a79ac779 (diff)
tagging ychat-0.5.5ychat-0.5.5
Diffstat (limited to 'src/incl.h')
-rwxr-xr-xsrc/incl.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/incl.h b/src/incl.h
index 31e220c..539a1f1 100755
--- a/src/incl.h
+++ b/src/incl.h
@@ -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"