mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 18:17:44 +00:00
WindowServer: Rename WSEvent to WSMessage.
Also do the same for WSMessageLoop and WSMessageReceiver. More to come.
This commit is contained in:
parent
7cf3c7461c
commit
bba21adae3
16 changed files with 129 additions and 151 deletions
13
WindowServer/WSMessageReceiver.h
Normal file
13
WindowServer/WSMessageReceiver.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Weakable.h>
|
||||
|
||||
class WSMessage;
|
||||
|
||||
class WSMessageReceiver : public Weakable<WSMessageReceiver> {
|
||||
public:
|
||||
WSMessageReceiver();
|
||||
virtual ~WSMessageReceiver();
|
||||
|
||||
virtual void event(WSMessage&) = 0;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue