ladybird/Userland/Libraries/LibWeb/ImageDecoding.h
Andreas Kling e017fe92e6 LibWeb: Move ImageDecoder client connection singleton to its own file
This will allow us to use it in more places around LibWeb.
2021-11-20 10:56:31 +01:00

16 lines
246 B
C++

/*
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibImageDecoderClient/Client.h>
namespace Web {
ImageDecoderClient::Client& image_decoder_client();
}