mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:17:45 +00:00
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:
parent
5d4ee0f58a
commit
4a37bec27c
16 changed files with 254 additions and 275 deletions
|
@ -3,7 +3,7 @@
|
|||
#include <SharedBuffer.h>
|
||||
|
||||
AClientConnection::AClientConnection()
|
||||
: ConnectionNG(*this, "/tmp/portal/audio")
|
||||
: IServerConnection(*this, "/tmp/portal/audio")
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
class ABuffer;
|
||||
|
||||
class AClientConnection : public IPC::Client::ConnectionNG<AudioClientEndpoint, AudioServerEndpoint>
|
||||
class AClientConnection : public IServerConnection<AudioClientEndpoint, AudioServerEndpoint>
|
||||
, public AudioClientEndpoint {
|
||||
C_OBJECT(AClientConnection)
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue