From 33e05f058c07e20178bb85fc10efcaf73ece59b6 Mon Sep 17 00:00:00 2001 From: Christian Burger Date: Sun, 17 Apr 2022 10:28:19 +0200 Subject: [PATCH] =?UTF-8?q?well=20=E2=80=A6=20forgot=20header=20guard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SingleUserInput.hpp | 5 +++++ Window.hpp | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/SingleUserInput.hpp b/SingleUserInput.hpp index b0ec8e6..7d21e5b 100644 --- a/SingleUserInput.hpp +++ b/SingleUserInput.hpp @@ -1,3 +1,8 @@ +/** + * @brief stores a single user input (printable and function keys) + * @author Christian Burger (christian@krikkel.de) + */ + #ifndef F0E30ED4_3883_40D6_A6EE_08BA4DF9E92E #define F0E30ED4_3883_40D6_A6EE_08BA4DF9E92E diff --git a/Window.hpp b/Window.hpp index 243d063..6aaa542 100644 --- a/Window.hpp +++ b/Window.hpp @@ -3,6 +3,9 @@ * @author Christian Burger (christian@krikkel.de) */ +#ifndef __WINDOW_H__ +#define __WINDOW_H__ + #include "SingleUserInput.hpp" #include @@ -84,4 +87,5 @@ namespace krikkel::NCursesPtyWindow static int staticHandlerPopLine(int cols, VTermScreenCell *cells, void *user); static void staticHandlerOutput(const char *s, size_t len, void *user); }; -} \ No newline at end of file +} +#endif // __WINDOW_H__ \ No newline at end of file