Userland: Mark subclasses of IPC::{Client,Server}Connection final

This commit is contained in:
Andreas Kling
2021-05-23 09:52:41 +02:00
parent c1c252ddb2
commit a345a1f4a1
10 changed files with 14 additions and 11 deletions

View File

@@ -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)