Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorModel/Shapes/SvgPolylineElement.cs @ 12762

Last change on this file since 12762 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 479 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>90</completed>
3
4using System;
5using System.Xml;
6
7namespace SharpVectors.Dom.Svg
8{
9  /// <summary>
10  /// </summary>
11    public sealed class SvgPolylineElement : SvgPolyElement, ISvgPolylineElement
12  {
13    #region Constructors and Destructor
14   
15    public SvgPolylineElement(string prefix, string localname, string ns, SvgDocument doc)
16      : base(prefix, localname, ns, doc)
17    {
18   
19    }
20
21    #endregion
22  }
23}
Note: See TracBrowser for help on using the repository browser.