mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
20 lines
308 B
C++
20 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;
|
||
|
|
||
|
}
|