using System;
using System.Collections.Generic;
using System.Text;

namespace Svg{
	
    /// <summary>
    /// Represents a list of re-usable SVG components (defs).
    /// </summary>
	[Dom.TagName("defs")]
	public class SVGDefsElement:SVGElement{
		
		public override void BuildFilter(RenderContext ctx){
			
            // Nothing - children should not be added.
			
        }
		
    }
}