From 1a6b54139adabdf410116ea45c5bb2588b1063be Mon Sep 17 00:00:00 2001 From: Bartosz Raczek Date: Thu, 10 Oct 2013 11:06:44 +0200 Subject: [PATCH] Added 'Ttile' element to the SvgElements rendering collection --- Source/Document Structure/SvgTitle.cs | 23 ++++++++++++++++++ Source/Svg.csproj | 1 + ...gnTimeResolveAssemblyReferencesInput.cache | Bin 5796 -> 6285 bytes 3 files changed, 24 insertions(+) create mode 100644 Source/Document Structure/SvgTitle.cs diff --git a/Source/Document Structure/SvgTitle.cs b/Source/Document Structure/SvgTitle.cs new file mode 100644 index 0000000..77d85ff --- /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 2c72656..93f9fee 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 GIT binary patch delta 855 zcmah{QBTuQ6yDw1%i6I?*Hu6qD+W|dY*z3^1JNKEVq`8hLX1sJX>Yb_yPDn>B!u`2 zOf>hwM`Ge1FnjY!pY;d$;9t-;UXAB2@{Z_KwV$YfuI`FFtv z8vpe9KFW`E*%3Mt3k8hxgWvhKm_HQRhw>ErQg}aTR(>J2RMhKIF_+6p5(k+>2|&i9 zfH_=deRb_l1?b-0TlQm0VrmE7ZR(L7do^;?kn|I3Z~8QK0^Led&yVzlrnz8u;^;YX zq1TGy7wmiSHa^GajWI=PAcdKd_PPoMVdsX?#42YY^#fc3Ci9xH*jzMkN*a7C1puD- zJO^Xf?}r{92QC<15a5X+Bd>@e02|?&Nq{G3T)6YU8(W)ewiTtZOY9Yg`mS#EoR@^! zs}DB}*TWb7&4(?!u@mYoKOmIpwI%jPu4q%xwc+%WUALrY7ooeA)t#}eJ(`ekxKtff z&$3kPTS;Pvqa|$`6i>4hbH{VG$o6nn<22=dJSya`u84x|l7`M!RR;Bez&=p!~ z5Fl=0O{n$BIiS`3dwxIZI7zP+N8vi`eSj~sw%R~f zxaZneK~vs;b>o4dOQuindZ(?@1M_wN?TX{LO#V>Lb3cV7l-b+74JZ-VgtS(s{EJY}3sCPfp=(H?XDQT)^ zY`Bi&w(l9+`leCuG;FK+#P_iS0Q>(Z)dSxQ_egZni;EXgdt^-zr0daUK%K~ zt|{nd@NeS{5I&DwsLS;0%Amo~8giIPOA2VrXifeZZiH_*AFUgnX4aFX1rUr%M1UAL zC=YEn^7@Bmacrb40AMQ}+h%B7lW@3mSJM2_62p`LKsU+H={flpz^VS0)eh=ra8&VJ zXFI^o04)MP+utXT<2m--02OK6^GiSq{av$1<5Pn?572F(RB$-@1IYJmp+J9t(El=k SOZ@X9O*yTxg<(Bcj{gNdh~F^) -- GitLab