mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-05 08:06:09 +00:00
This turned into a huge refactoring that somehow also includes making locks recursive/reentrant.
14 lines
220 B
C++
14 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;
|
|
};
|