SvgDefinitionList.cs 869 Bytes
Newer Older
davescriven's avatar
davescriven committed
1
2
3
4
5
6
using System;
using System.Collections.Generic;
using System.Text;

namespace Svg
{
7
8
9
    /// <summary>
    /// Represents a list of re-usable SVG components.
    /// </summary>
10
    [SvgElement("defs")]
davescriven's avatar
davescriven committed
11
12
    public class SvgDefinitionList : SvgElement
    {
13
14
15
        /// <summary>
        /// Initializes a new instance of the <see cref="SvgDefinitionList"/> class.
        /// </summary>
davescriven's avatar
davescriven committed
16
17
18
19
        public SvgDefinitionList()
        {
        }

20
21
22
23
24
        /// <summary>
        /// Renders the <see cref="SvgElement"/> and contents to the specified <see cref="SvgRenderer"/> object.
        /// </summary>
        /// <param name="renderer">The <see cref="SvgRenderer"/> object to render to.</param>
        protected override void Render(SvgRenderer renderer)
davescriven's avatar
davescriven committed
25
26
27
28
29
        {
            // Do nothing. Children should NOT be rendered.
        }
    }
}