summaryrefslogtreecommitdiffstats
path: root/src/client/gui/OO_FLTK.hpp
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2020-12-08 12:48:16 +0000
committerJoursoir <chat@joursoir.net>2020-12-08 12:48:16 +0000
commit27cd9aded215835ffde615153600476bf9be2473 (patch)
tree0018a18a3d1b5891321d8218001c02128af82380 /src/client/gui/OO_FLTK.hpp
parentf7bd80577164da7540ad93fb2fa93df38168133b (diff)
downloadwant-chat-27cd9aded215835ffde615153600476bf9be2473.tar.gz
want-chat-27cd9aded215835ffde615153600476bf9be2473.tar.bz2
want-chat-27cd9aded215835ffde615153600476bf9be2473.zip
create base class for all client, add some functionality to gui
Diffstat (limited to 'src/client/gui/OO_FLTK.hpp')
-rw-r--r--src/client/gui/OO_FLTK.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/client/gui/OO_FLTK.hpp b/src/client/gui/OO_FLTK.hpp
index 2f52f97..b581321 100644
--- a/src/client/gui/OO_FLTK.hpp
+++ b/src/client/gui/OO_FLTK.hpp
@@ -1,3 +1,6 @@
+#ifndef WC_OOFLTK_H
+#define WC_OOFLTK_H
+
#include <FL/Fl.H>
#include <FL/Fl_Box.H>
#include <FL/Fl_Input.H>
@@ -23,4 +26,6 @@ class ChatBaseOutput : public Fl_Multiline_Output {
public:
ChatBaseOutput(int x, int y, int w, int h, const char *lb = 0);
~ChatBaseOutput() {}
-}; \ No newline at end of file
+};
+
+#endif \ No newline at end of file