mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			308 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			308 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2024, Andreas Kling <andreas@ladybird.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include <LibGfx/Path.h>
 | 
						|
#include <LibGfx/PathSkia.h>
 | 
						|
 | 
						|
namespace Gfx {
 | 
						|
 | 
						|
NonnullOwnPtr<Gfx::PathImpl> PathImpl::create()
 | 
						|
{
 | 
						|
    return PathImplSkia::create();
 | 
						|
}
 | 
						|
 | 
						|
PathImpl::~PathImpl() = default;
 | 
						|
 | 
						|
}
 |