mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:47:34 +00:00
Rename new IPC headers & classes
Sticking these in a namespace allows us to use a more generic ("Connection") term without clashing, which is way easier to understand than to try to come up with unique names for both.
This commit is contained in:
parent
2177594c96
commit
9c8dd836fc
12 changed files with 71 additions and 59 deletions
|
@ -2,12 +2,12 @@
|
|||
|
||||
#include <LibCore/CLocalSocket.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CIPCClientSideConnection.h>
|
||||
#include <LibCore/CoreIPCClient.h>
|
||||
#include <LibAudio/ASAPI.h>
|
||||
|
||||
class ABuffer;
|
||||
|
||||
class AClientConnection : public CIPCClientSideConnection<ASAPI_ServerMessage, ASAPI_ClientMessage> {
|
||||
class AClientConnection : public IPC::Client::Connection<ASAPI_ServerMessage, ASAPI_ClientMessage> {
|
||||
public:
|
||||
AClientConnection();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue