SvgElement.cs 33.5 KB
Newer Older
joreg's avatar
joreg committed
1001
1002
    /// Represents a string argument
    /// </summary>
Tebjan Halm's avatar
Tebjan Halm committed
1003
    public class StringArg : SVGArg
joreg's avatar
joreg committed
1004
1005
1006
    {
        public string s;
    }
1007

davescriven's avatar
davescriven committed
1008
1009
    internal interface ISvgElement
    {
1010
1011
1012
		SvgElement Parent {get;}
		SvgElementCollection Children { get; }

1013
        void Render(SvgRenderer renderer);
davescriven's avatar
davescriven committed
1014
1015
    }
}