/* * Copyright (c) 2022, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::SVG { // https://www.w3.org/TR/SVG11/types.html#InterfaceSVGAnimatedLength class SVGAnimatedLength final : public Bindings::PlatformObject { WEB_PLATFORM_OBJECT(SVGAnimatedLength, Bindings::PlatformObject); GC_DECLARE_ALLOCATOR(SVGAnimatedLength); public: [[nodiscard]] static GC::Ref create(JS::Realm&, GC::Ref base_val, GC::Ref anim_val); virtual ~SVGAnimatedLength() override; GC::Ref base_val() const { return m_base_val; } GC::Ref anim_val() const { return m_anim_val; } private: SVGAnimatedLength(JS::Realm&, GC::Ref base_val, GC::Ref anim_val); virtual void initialize(JS::Realm&) override; virtual void visit_edges(Cell::Visitor&) override; GC::Ref m_base_val; GC::Ref m_anim_val; }; }