well … forgot header guard
This commit is contained in:
parent
ab0525cc6f
commit
33e05f058c
|
@ -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
|
#ifndef F0E30ED4_3883_40D6_A6EE_08BA4DF9E92E
|
||||||
#define F0E30ED4_3883_40D6_A6EE_08BA4DF9E92E
|
#define F0E30ED4_3883_40D6_A6EE_08BA4DF9E92E
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
* @author Christian Burger (christian@krikkel.de)
|
* @author Christian Burger (christian@krikkel.de)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef __WINDOW_H__
|
||||||
|
#define __WINDOW_H__
|
||||||
|
|
||||||
#include "SingleUserInput.hpp"
|
#include "SingleUserInput.hpp"
|
||||||
|
|
||||||
#include <cursesw.h>
|
#include <cursesw.h>
|
||||||
|
@ -85,3 +88,4 @@ namespace krikkel::NCursesPtyWindow
|
||||||
static void staticHandlerOutput(const char *s, size_t len, void *user);
|
static void staticHandlerOutput(const char *s, size_t len, void *user);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
#endif // __WINDOW_H__
|
Loading…
Reference in a new issue