Commit d3803c98 authored by Tebjan Halm's avatar Tebjan Halm
Browse files

Merge branch 'master' of github.com:vvvv/SVG

parents 22f6e438 1cab198c
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<SvgTitle>();
}
public override SvgElement DeepCopy<T>()
{
var newObj = base.DeepCopy<T>() as SvgTitle;
return newObj;
}
}
}
\ No newline at end of file
......@@ -97,6 +97,7 @@
<Compile Include="DataTypes\SvgOverflow.cs" />
<Compile Include="DataTypes\SvgUnitCollection.cs" />
<Compile Include="DataTypes\SvgViewBox.cs" />
<Compile Include="Document Structure\SvgTitle.cs" />
<Compile Include="Document Structure\SvgDocumentMetadata.cs" />
<Compile Include="Painting\SvgMarker.cs" />
<Compile Include="Document Structure\SvgDefinitionList.cs" />
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment