2020-07-20 03:01:53 -03:00
|
|
|
/*
|
2021-04-22 20:53:07 -03:00
|
|
|
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
|
2020-07-20 03:01:53 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-20 03:01:53 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-07-23 13:44:42 -03:00
|
|
|
#include <LibWeb/SVG/SVGGraphicsElement.h>
|
2020-07-20 03:01:53 -03:00
|
|
|
|
2020-07-23 13:44:42 -03:00
|
|
|
namespace Web::SVG {
|
2020-07-20 03:01:53 -03:00
|
|
|
|
2020-07-23 13:44:42 -03:00
|
|
|
class SVGGeometryElement : public SVGGraphicsElement {
|
2020-07-20 03:01:53 -03:00
|
|
|
public:
|
2020-10-02 16:57:28 -03:00
|
|
|
using WrapperType = Bindings::SVGGeometryElementWrapper;
|
|
|
|
|
|
2020-07-26 12:47:26 -03:00
|
|
|
protected:
|
2021-02-07 07:20:15 -03:00
|
|
|
SVGGeometryElement(DOM::Document& document, QualifiedName qualified_name);
|
2020-07-20 03:01:53 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|