Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/DataTables/InformationAnalysisTable.cs

Last change on this file was 16995, checked in by gkronber, 6 years ago

#2520 Update plugin dependencies and references for HL.FLA for new persistence

File size: 1006 bytes
Line 
1
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4using HEAL.Attic;
5
6namespace HeuristicLab.Analysis.FitnessLandscape.DataTables {
7
8  [Item("InformationAnalysisTable", "DataTable that contains series with results of an information analysis")]
9  [StorableType("6E9BB524-0ECA-4796-AB6D-4D6B4A083FB8")]
10  public class InformationAnalysisTable : DataTable {
11
12    #region Construction & Cloning
13
14    [StorableConstructor]
15    protected InformationAnalysisTable(StorableConstructorFlag _) : base(_) { }
16    protected InformationAnalysisTable(InformationAnalysisTable original, Cloner cloner) : base(original, cloner) { }
17    public InformationAnalysisTable() : base() { }
18    public InformationAnalysisTable(string name) : base(name) { }
19    public InformationAnalysisTable(string name, string description) : base(name, description) { }
20    public override IDeepCloneable Clone(Cloner cloner) {
21      return new InformationAnalysisTable(this, cloner);
22    }
23    #endregion
24
25  }
26}
Note: See TracBrowser for help on using the repository browser.