/* * Copyright (c) 2020, Matthew Olsson * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Web::SVG { class SVGGeometryElement : public SVGGraphicsElement { public: using WrapperType = Bindings::SVGGeometryElementWrapper; protected: SVGGeometryElement(DOM::Document& document, QualifiedName qualified_name); }; }