diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-07-17 19:46:06 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-17 20:16:44 +0200 |
commit | 9c8dd836fc079666f3dfa92ae23c31d7c46bd769 (patch) | |
tree | 3346e43c9a69aa71f592b5da26df6212927dfd95 /Libraries/LibAudio/AClientConnection.h | |
parent | 2177594c960976d82c5eb6fac3f90f3345d37854 (diff) | |
download | serenity-9c8dd836fc079666f3dfa92ae23c31d7c46bd769.zip |
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.
Diffstat (limited to 'Libraries/LibAudio/AClientConnection.h')
-rw-r--r-- | Libraries/LibAudio/AClientConnection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibAudio/AClientConnection.h b/Libraries/LibAudio/AClientConnection.h index 6a8701635c..312b8a22b5 100644 --- a/Libraries/LibAudio/AClientConnection.h +++ b/Libraries/LibAudio/AClientConnection.h @@ -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(); |