ladybird/Libraries/LibWeb/SVG/SVGFEFuncAElement.cpp
2025-11-09 01:22:48 +01:00

25 lines
591 B
C++

/*
* Copyright (c) 2025, Jelle Raaijmakers <jelle@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/Bindings/SVGFEFuncAElementPrototype.h>
#include <LibWeb/SVG/SVGFEFuncAElement.h>
namespace Web::SVG {
GC_DEFINE_ALLOCATOR(SVGFEFuncAElement);
SVGFEFuncAElement::SVGFEFuncAElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGComponentTransferFunctionElement(document, qualified_name)
{
}
void SVGFEFuncAElement::initialize(JS::Realm& realm)
{
WEB_SET_PROTOTYPE_FOR_INTERFACE(SVGFEFuncAElement);
Base::initialize(realm);
}
}