Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorModel/DocumentStructure/SvgAElement.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: 418 bytes
Line 
1using System;
2using System.Text;
3using System.Collections.Generic;
4
5namespace SharpVectors.Dom.Svg
6{
7    public sealed class SvgAElement : SvgTransformableElement
8    {
9        #region Constructors and Destructor
10
11        public SvgAElement(string prefix, string localname, string ns, SvgDocument doc)
12            : base(prefix, localname, ns, doc)
13        {
14        }
15
16        #endregion
17    }
18}
Note: See TracBrowser for help on using the repository browser.