/* * Copyright (c) 2024, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Gfx { NonnullOwnPtr PathImpl::create() { return PathImplSkia::create(); } PathImpl::~PathImpl() = default; }