diff --git a/Source/Document Structure/SvgTitle.cs b/Source/Document Structure/SvgTitle.cs new file mode 100644 index 0000000000000000000000000000000000000000..77d85ffd097f354992ba58e7f1b5cea8ec123d59 --- /dev/null +++ b/Source/Document Structure/SvgTitle.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.ComponentModel; + +namespace Svg +{ + [SvgElement("title")] + public class SvgTitle : SvgElement + { + public override SvgElement DeepCopy() + { + return DeepCopy(); + } + + public override SvgElement DeepCopy() + { + var newObj = base.DeepCopy() as SvgTitle; + return newObj; + } + + } +} \ No newline at end of file diff --git a/Source/Svg.csproj b/Source/Svg.csproj index 2c72656275959b0b88a928ddd7c801c8ba310f7c..93f9fee134736cdd74a791b233ceb9209c5173b3 100644 --- a/Source/Svg.csproj +++ b/Source/Svg.csproj @@ -97,6 +97,7 @@ + diff --git a/Source/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Source/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 1867c4d45b05c10adbe13ba39fb031dbc657acf9..bf56b46dd4618dc4a415b19a4ab62b62e5b66651 100644 Binary files a/Source/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Source/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ