using System; using System.Collections.Generic; using System.Text; namespace Svg { /// /// Represents a list of re-usable SVG components. /// [SvgElement("defs")] public class SvgDefinitionList : SvgElement { /// /// Initializes a new instance of the class. /// public SvgDefinitionList() { } /// /// Renders the and contents to the specified object. /// /// The object to render to. protected override void Render(SvgRenderer renderer) { // Do nothing. Children should NOT be rendered. } public override SvgElement DeepCopy() { return DeepCopy(); } } }