mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
21 lines
318 B
C++
21 lines
318 B
C++
/*
|
|
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Error.h>
|
|
#include <AK/NonnullRefPtr.h>
|
|
|
|
namespace Gfx::ICC {
|
|
|
|
class Profile;
|
|
class TagData;
|
|
|
|
ErrorOr<NonnullRefPtr<Profile>> sRGB();
|
|
|
|
ErrorOr<NonnullRefPtr<TagData>> sRGB_curve();
|
|
|
|
}
|