SVGGeometryElement.h 415 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibWeb/SVG/SVGGraphicsElement.h>
  8. namespace Web::SVG {
  9. class SVGGeometryElement : public SVGGraphicsElement {
  10. public:
  11. using WrapperType = Bindings::SVGGeometryElementWrapper;
  12. protected:
  13. SVGGeometryElement(DOM::Document& document, QualifiedName qualified_name);
  14. };
  15. }