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

This commit is contained in:
Andreas Kling 2021-05-23 09:52:41 +02:00
commit a345a1f4a1
Notes: sideshowbarker 2024-07-18 17:30:41 +09:00
10 changed files with 14 additions and 11 deletions

View file

@ -34,7 +34,8 @@ auto Launcher::Details::from_details_str(const String& details_str) -> NonnullRe
return details;
}
class LaunchServerConnection : public IPC::ServerConnection<LaunchClientEndpoint, LaunchServerEndpoint>
class LaunchServerConnection final
: public IPC::ServerConnection<LaunchClientEndpoint, LaunchServerEndpoint>
, public LaunchClientEndpoint {
C_OBJECT(LaunchServerConnection)
private: