Last change
on this file since 13825 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
439 bytes
|
Rev | Line | |
---|
[12762] | 1 | using System;
|
---|
| 2 |
|
---|
| 3 | namespace SharpVectors.Dom.Svg
|
---|
| 4 | {
|
---|
| 5 | /// <summary>
|
---|
| 6 | /// The SvgTitleElement interface corresponds to the 'title' element.
|
---|
| 7 | /// </summary>
|
---|
| 8 | public sealed class SvgTitleElement : SvgStyleableElement, ISvgTitleElement
|
---|
| 9 | {
|
---|
| 10 | #region Constructors
|
---|
| 11 |
|
---|
| 12 | public SvgTitleElement(string prefix, string localname, string ns, SvgDocument doc)
|
---|
| 13 | : base(prefix, localname, ns, doc)
|
---|
| 14 | {
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | #endregion
|
---|
| 18 | }
|
---|
| 19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.