Utility: Make EventHandler a handled object

This is a bit ironic.
This commit is contained in:
Lynix 2017-01-19 14:08:33 +01:00
parent b64d384c99
commit 282538876b
1 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,11 @@
namespace Nz
{
class EventHandler
class EventHandler;
using EventHandlerHandle = Nz::ObjectRef<EventHandler>;
class EventHandler : public HandledObject<EventHandler>
{
public:
EventHandler() = default;