diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-12-02 09:58:25 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-02 11:11:05 +0100 |
commit | 4a37bec27c430b867143d986cd07f83111d3e018 (patch) | |
tree | 3eaa34d7815fc207507f25416813800d268f81e0 /Libraries/LibAudio/AClientConnection.h | |
parent | 5d4ee0f58ae974a3c34a246a52a1cbab1dce1e88 (diff) | |
download | serenity-4a37bec27c430b867143d986cd07f83111d3e018.zip |
LibIPC: Rename base classes to IClientConnection and IServerConnection
This matches what we're already calling the server-side subclasses
better, though we'll probably want to find some better names for the
client-side classes eventually.
Diffstat (limited to 'Libraries/LibAudio/AClientConnection.h')
-rw-r--r-- | Libraries/LibAudio/AClientConnection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibAudio/AClientConnection.h b/Libraries/LibAudio/AClientConnection.h index d05d37e047..30e971a4c7 100644 --- a/Libraries/LibAudio/AClientConnection.h +++ b/Libraries/LibAudio/AClientConnection.h @@ -6,7 +6,7 @@ class ABuffer; -class AClientConnection : public IPC::Client::ConnectionNG<AudioClientEndpoint, AudioServerEndpoint> +class AClientConnection : public IServerConnection<AudioClientEndpoint, AudioServerEndpoint> , public AudioClientEndpoint { C_OBJECT(AClientConnection) public: |