1
Fork 0
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:
Andreas Kling 2019-07-27 14:30:09 +02:00
parent 9ed7f4576b
commit c7a4c8f93b
4 changed files with 54 additions and 39 deletions

View file

@ -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&);
};