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

namespace Svg{
	
    /// <summary>
    /// Represents a list of re-usable SVG components (filter).
    /// </summary>
	[Dom.TagName("filter")]
	public class SVGFilterElement:SVGElement{
		
		public override void BuildFilter(RenderContext ctx){
			
            // Nothing - here; we don't want the filter to be included in the "main" build.
			
        }
		
    }
}