mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:47:34 +00:00
LibAudio: Run clang-format on all of it to make editing easier.
This commit is contained in:
parent
9ed7f4576b
commit
c7a4c8f93b
4 changed files with 54 additions and 39 deletions
|
@ -1,16 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibCore/CLocalSocket.h>
|
||||
#include <LibCore/CNotifier.h>
|
||||
#include <LibCore/CoreIPCClient.h>
|
||||
#include <LibAudio/ASAPI.h>
|
||||
#include <LibCore/CoreIPCClient.h>
|
||||
|
||||
class ABuffer;
|
||||
|
||||
class AClientConnection : public IPC::Client::Connection<ASAPI_ServerMessage, ASAPI_ClientMessage> {
|
||||
C_OBJECT(AClientConnection)
|
||||
public:
|
||||
AClientConnection();
|
||||
|
||||
void handshake() override;
|
||||
void play(const ABuffer& buffer);
|
||||
virtual void handshake() override;
|
||||
void play(const ABuffer&);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue