summaryrefslogtreecommitdiff
path: root/WindowServer/WSEventReceiver.h
blob: 1b81da7c2a78c54b5a276a724221b7bf04d0107d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <AK/Weakable.h>

class WSEvent;

class WSEventReceiver : public Weakable<WSEventReceiver> {
public:
    WSEventReceiver();
    virtual ~WSEventReceiver();

    virtual void event(WSEvent&) = 0;
};