Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/IAttribute.cs @ 13265

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

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

File size: 348 bytes
Line 
1using System;
2using System.Xml;
3
4namespace SharpVectors.Dom
5{
6    /// <summary>
7    /// Summary description for IAttribute.
8    /// </summary>
9    public interface IAttribute : INode
10    {
11        XmlElement OwnerElement
12        {
13            get;
14        }
15
16        bool Specified
17        {
18            get;
19        }
20    }
21}
Note: See TracBrowser for help on using the repository browser.