LibIPC: Put all classes in the IPC namespace and remove the leading I

This commit is contained in:
Andreas Kling 2020-02-05 19:57:18 +01:00
commit d264e8fcc5
Notes: sideshowbarker 2024-07-19 09:35:47 +09:00
22 changed files with 108 additions and 80 deletions

View file

@ -31,7 +31,7 @@
namespace Protocol {
Client::Client()
: IServerConnection(*this, "/tmp/portal/protocol")
: IPC::ServerConnection<ProtocolClientEndpoint, ProtocolServerEndpoint>(*this, "/tmp/portal/protocol")
{
handshake();
}