SVGElement.h 425 B

1234567891011121314151617181920212223
  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/DOM/Element.h>
  8. namespace Web::SVG {
  9. class SVGElement : public DOM::Element {
  10. public:
  11. using WrapperType = Bindings::SVGElementWrapper;
  12. virtual bool requires_svg_container() const override { return true; }
  13. protected:
  14. SVGElement(DOM::Document&, QualifiedName);
  15. };
  16. }