diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-15 02:16:21 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-15 02:16:21 +0100 |
commit | 1889a5ca33ac1253ce1b220f667bf0ea94515a1b (patch) | |
tree | 16e8e517c0c84c2fa89d61f77273aa13327c5a7b /src/core/managed/Events.hpp | |
parent | e99a307bf76689e4e86f8ac1a4c545bcebbdb7ab (diff) |
fixed clang warnings and errors
Diffstat (limited to 'src/core/managed/Events.hpp')
-rw-r--r-- | src/core/managed/Events.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/managed/Events.hpp b/src/core/managed/Events.hpp index a69c363..e433c6d 100644 --- a/src/core/managed/Events.hpp +++ b/src/core/managed/Events.hpp @@ -84,7 +84,8 @@ using EventHandler = void (*)(const Event &event, Managed *owner, void *data); * The Event class and its child classes are responsible for containing the * actual event data which further describes the event to the event handlers. */ -struct Event { +class Event { +public: /** * Actual event type. */ |