diff options
Diffstat (limited to 'plugingui/eventhandler.h')
| -rw-r--r-- | plugingui/eventhandler.h | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/plugingui/eventhandler.h b/plugingui/eventhandler.h index 490c515..6269baf 100644 --- a/plugingui/eventhandler.h +++ b/plugingui/eventhandler.h @@ -27,6 +27,7 @@  #pragma once  #include <notifier.h> +#include <memory>  #include "guievent.h"  #include "nativewindow.h" @@ -47,11 +48,11 @@ public:  	//! \brief Get a single event from the event queue.  	//! \return A pointer to the event or nullptr if there are none. -	Event *getNextEvent(); +	std::shared_ptr<Event> getNextEvent();  	//! \brief Get a single event from the event queue without popping it.  	//! \return A pointer to the event or nullptr if there are none. -	Event *peekNextEvent(); +	std::shared_ptr<Event> peekNextEvent();  	Notifier<> closeNotifier; | 
