mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:52:46 +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();
 | |
| 
 | |
| }
 | 
