SvgDescription.cs 538 Bytes
Newer Older
davescriven's avatar
davescriven committed
1
2
3
4
5
6
7
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;

namespace Svg
{
8
    [SvgElement("desc")]
davescriven's avatar
davescriven committed
9
10
11
12
    public class SvgDescription : SvgElement
    {
        public override string ToString()
        {
13
            return this.Content;
davescriven's avatar
davescriven committed
14
        }
15
        
16
17
18
19
20
21
22
23
24
25
26
		public override SvgElement DeepCopy()
		{
			return DeepCopy<SvgDescription>();
		}

		public override SvgElement DeepCopy<T>()
		{
			var newObj = base.DeepCopy<T>() as SvgDescription;
			return newObj;
		}

davescriven's avatar
davescriven committed
27
28
    }
}