SVGGElement.h 532 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2021, Andreas Kling <kling@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 SVGGElement final : public SVGGraphicsElement {
  10. WEB_PLATFORM_OBJECT(SVGGElement, SVGGraphicsElement);
  11. public:
  12. virtual ~SVGGElement() override = default;
  13. virtual JS::GCPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
  14. private:
  15. SVGGElement(DOM::Document&, DOM::QualifiedName);
  16. };
  17. }