SVGGElement.h 571 B

1234567891011121314151617181920212223242526
  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. JS_DECLARE_ALLOCATOR(SVGGElement);
  12. public:
  13. virtual ~SVGGElement() override = default;
  14. virtual JS::GCPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
  15. private:
  16. SVGGElement(DOM::Document&, DOM::QualifiedName);
  17. };
  18. }