From acedc40411260e66a071816f1a39519ce8fb1835 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Tue, 24 Dec 2019 00:19:39 +0100 Subject: [PATCH] Add missing includes --- inferno/src/inferno/event/joystickevent.h | 3 ++- inferno/src/inferno/event/keyevent.h | 2 ++ inferno/src/inferno/event/mouseevent.h | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/inferno/src/inferno/event/joystickevent.h b/inferno/src/inferno/event/joystickevent.h index 6056e93..4afd63d 100644 --- a/inferno/src/inferno/event/joystickevent.h +++ b/inferno/src/inferno/event/joystickevent.h @@ -1,6 +1,8 @@ #ifndef JOYSTICKEVENT_H #define JOYSTICKEVENT_H +#include // std::stringstream + #include "inferno/event/event.h" namespace Inferno { @@ -51,5 +53,4 @@ namespace Inferno { } - #endif // JOYSTICKEVENT_H diff --git a/inferno/src/inferno/event/keyevent.h b/inferno/src/inferno/event/keyevent.h index 2fe954f..74fc238 100644 --- a/inferno/src/inferno/event/keyevent.h +++ b/inferno/src/inferno/event/keyevent.h @@ -1,6 +1,8 @@ #ifndef KEYEVENT_H #define KEYEVENT_H +#include // std::stringstream + #include "inferno/event/event.h" namespace Inferno { diff --git a/inferno/src/inferno/event/mouseevent.h b/inferno/src/inferno/event/mouseevent.h index e7e1708..4c2fc0b 100644 --- a/inferno/src/inferno/event/mouseevent.h +++ b/inferno/src/inferno/event/mouseevent.h @@ -1,6 +1,8 @@ #ifndef MOUSEEVENT_H #define MOUSEEVENT_H +#include // std::stringstream + #include "inferno/event/event.h" namespace Inferno {