mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:18:11 +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
|
@ -33,12 +33,12 @@
|
|||
namespace GUI {
|
||||
|
||||
class WindowServerConnection
|
||||
: public IServerConnection<WindowClientEndpoint, WindowServerEndpoint>
|
||||
: public IPC::ServerConnection<WindowClientEndpoint, WindowServerEndpoint>
|
||||
, public WindowClientEndpoint {
|
||||
C_OBJECT(WindowServerConnection)
|
||||
public:
|
||||
WindowServerConnection()
|
||||
: IServerConnection(*this, "/tmp/portal/window")
|
||||
: IPC::ServerConnection<WindowClientEndpoint, WindowServerEndpoint>(*this, "/tmp/portal/window")
|
||||
{
|
||||
handshake();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue