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

LibIPC: Move non-templated parts of IPC::Connection out of line

This patch splits IPC::Connection into Connection and ConnectionBase.
ConnectionBase moves into Connection.cpp so we don't have to inline it
for every single templated subclass.
This commit is contained in:
Andreas Kling 2021-10-23 21:48:42 +02:00
parent 561c18726f
commit f3c4a357ea
3 changed files with 200 additions and 148 deletions

View file

@ -1,4 +1,5 @@
set(SOURCES
Connection.cpp
Decoder.cpp
Encoder.cpp
Message.cpp