/* * Copyright (c) 2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Web::SVG { class SVGGElement final : public SVGGraphicsElement { public: using WrapperType = Bindings::SVGPathElementWrapper; SVGGElement(DOM::Document&, DOM::QualifiedName); virtual ~SVGGElement() override = default; virtual RefPtr create_layout_node(NonnullRefPtr) override; }; }