mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:57:46 +00:00
Userland: Mark subclasses of IPC::{Client,Server}Connection final
This commit is contained in:
parent
c1c252ddb2
commit
a345a1f4a1
10 changed files with 14 additions and 11 deletions
|
@ -12,7 +12,8 @@
|
|||
|
||||
namespace GUI {
|
||||
|
||||
class ClipboardServerConnection : public IPC::ServerConnection<ClipboardClientEndpoint, ClipboardServerEndpoint>
|
||||
class ClipboardServerConnection final
|
||||
: public IPC::ServerConnection<ClipboardClientEndpoint, ClipboardServerEndpoint>
|
||||
, public ClipboardClientEndpoint {
|
||||
C_OBJECT(ClipboardServerConnection);
|
||||
|
||||
|
|
|
@ -11,7 +11,8 @@
|
|||
|
||||
namespace GUI {
|
||||
|
||||
class NotificationServerConnection : public IPC::ServerConnection<NotificationClientEndpoint, NotificationServerEndpoint>
|
||||
class NotificationServerConnection final
|
||||
: public IPC::ServerConnection<NotificationClientEndpoint, NotificationServerEndpoint>
|
||||
, public NotificationClientEndpoint {
|
||||
C_OBJECT(NotificationServerConnection)
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
namespace GUI {
|
||||
|
||||
class WindowManagerServerConnection
|
||||
class WindowManagerServerConnection final
|
||||
: public IPC::ServerConnection<WindowManagerClientEndpoint, WindowManagerServerEndpoint>
|
||||
, public WindowManagerClientEndpoint {
|
||||
C_OBJECT(WindowManagerServerConnection)
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
namespace GUI {
|
||||
|
||||
class WindowServerConnection
|
||||
class WindowServerConnection final
|
||||
: public IPC::ServerConnection<WindowClientEndpoint, WindowServerEndpoint>
|
||||
, public WindowClientEndpoint {
|
||||
C_OBJECT(WindowServerConnection)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue