1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:27:35 +00:00

WindowServer: Add WSClientConnection class to manage an individual client.

This makes both object lifetimes and object ID's a lot easier to understand.
This commit is contained in:
Andreas Kling 2019-02-14 08:22:47 +01:00
parent f529b845ec
commit aa7947c889
11 changed files with 452 additions and 383 deletions

View file

@ -12,7 +12,7 @@ class WSWindow;
class Font;
class Process;
class WSMenu {
class WSMenu : public Weakable<WSMenu> {
public:
WSMenu(Process&, int menu_id, String&& name);
~WSMenu();