1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:27:43 +00:00

AudioServer: Move ClientAudioStream to own files

This class will only grow, and it should really have its own files.
This commit is contained in:
kleines Filmröllchen 2023-07-10 23:41:08 +02:00 committed by Andrew Kaster
parent 3406d500a4
commit aacb4fc590
6 changed files with 181 additions and 95 deletions

View file

@ -187,9 +187,4 @@ void Mixer::request_setting_sync()
}
}
ClientAudioStream::ClientAudioStream(ConnectionFromClient& client)
: m_client(client)
{
}
}