Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Views/IAbstractView.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: 396 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>0</completed>
3using System;
4
5namespace SharpVectors.Dom.Views
6{
7  /// <summary>
8  /// A base interface that all views shall derive from
9  /// </summary>
10  public interface IAbstractView
11  {
12    /// <summary>
13    /// The source DocumentView of which this is an AbstractView.
14    /// </summary>
15    IDocumentView Document{get;}
16  }
17}
Note: See TracBrowser for help on using the repository browser.