LibIPC: Rename base classes to IClientConnection and IServerConnection

This matches what we're already calling the server-side subclasses
better, though we'll probably want to find some better names for the
client-side classes eventually.
This commit is contained in:
Andreas Kling 2019-12-02 09:58:25 +01:00
commit 4a37bec27c
Notes: sideshowbarker 2024-07-19 10:59:47 +09:00
16 changed files with 254 additions and 275 deletions

View file

@ -3,7 +3,7 @@
#include <SharedBuffer.h>
AClientConnection::AClientConnection()
: ConnectionNG(*this, "/tmp/portal/audio")
: IServerConnection(*this, "/tmp/portal/audio")
{
}