1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:47:44 +00:00

LibAudio: Add a forwarding header

This commit is contained in:
Timothy Flynn 2023-06-11 13:27:46 -04:00 committed by Andreas Kling
parent 936ec94f81
commit 3a4e64bdbd

View file

@ -0,0 +1,18 @@
/*
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Audio {
class ConnectionToServer;
class Loader;
struct Sample;
template<typename SampleType>
class ResampleHelper;
}