mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:27:34 +00:00
LibIPC: Put all classes in the IPC namespace and remove the leading I
This commit is contained in:
parent
a894a799c3
commit
d264e8fcc5
22 changed files with 108 additions and 80 deletions
|
@ -29,7 +29,7 @@
|
|||
#include <LibAudio/AClientConnection.h>
|
||||
|
||||
AClientConnection::AClientConnection()
|
||||
: IServerConnection(*this, "/tmp/portal/audio")
|
||||
: IPC::ServerConnection<AudioClientEndpoint, AudioServerEndpoint>(*this, "/tmp/portal/audio")
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
class ABuffer;
|
||||
|
||||
class AClientConnection : public IServerConnection<AudioClientEndpoint, AudioServerEndpoint>
|
||||
class AClientConnection : public IPC::ServerConnection<AudioClientEndpoint, AudioServerEndpoint>
|
||||
, public AudioClientEndpoint {
|
||||
C_OBJECT(AClientConnection)
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue