summaryrefslogtreecommitdiff
path: root/plugingui/nativewindow.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2016-10-28 17:55:06 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2016-10-28 17:55:06 +0200
commit05b3e8cdc7f6cf7056c96d9cd150a0e2a8fb85a4 (patch)
tree19c2723984cef60a8000812dc4fb5176dcba42d0 /plugingui/nativewindow.h
parente19d48332a7bc8963bc0a58d746a75dc15eeb58c (diff)
Rewrite event handler to use shared_ptr Events instead of raw pointers.
Diffstat (limited to 'plugingui/nativewindow.h')
-rw-r--r--plugingui/nativewindow.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugingui/nativewindow.h b/plugingui/nativewindow.h
index a7d101e..ff24fed 100644
--- a/plugingui/nativewindow.h
+++ b/plugingui/nativewindow.h
@@ -27,6 +27,7 @@
#pragma once
#include <string>
+#include <memory>
#include "guievent.h"
@@ -74,11 +75,11 @@ public:
//! \brief Read a single event from the event queue.
//! \return A pointer to the event or nullptr is none exists.
- virtual Event *getNextEvent() = 0;
+ virtual std::shared_ptr<Event> getNextEvent() = 0;
//! \brief Read next event without popping it from the event queue.
//! \return A pointer to the event or nullptr is none exists.
- virtual Event* peekNextEvent() = 0;
+ virtual std::shared_ptr<Event> peekNextEvent() = 0;
};
} // GUI::