1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-15 03:21:01 +00:00
serenity/WindowServer/WSEventReceiver.h
Andreas Kling f7ca6d254d Tear out or duplicate what's unique for WindowServer from Widgets.
This turned into a huge refactoring that somehow also includes
making locks recursive/reentrant.
2019-01-16 16:03:50 +01:00

13 lines
220 B
C++

#pragma once
#include <AK/Weakable.h>
class WSEvent;
class WSEventReceiver : public Weakable<WSEventReceiver> {
public:
WSEventReceiver();
virtual ~WSEventReceiver();
virtual void event(WSEvent&) = 0;
};