12345678910111213141516171819 |
- /*
- * 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;
- }
|