Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorModel/Text/SvgTextElement.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: 395 bytes
Line 
1using System;
2using System.Xml;
3
4namespace SharpVectors.Dom.Svg
5{
6  /// <summary>
7  /// Summary description for SvgTextElement.
8  /// </summary>
9  public sealed class SvgTextElement : SvgTextPositioningElement, ISvgTextElement
10  {
11        public SvgTextElement(string prefix, string localname, string ns, SvgDocument doc)
12            : base(prefix, localname, ns, doc)
13    {
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.