using HeuristicLab.Common; using HeuristicLab.Core; using HEAL.Attic; namespace HeuristicLab.Analysis.FitnessLandscape.DataTables { [Item("InformationAnalysisTable", "DataTable that contains series with results of an information analysis")] [StorableType("6E9BB524-0ECA-4796-AB6D-4D6B4A083FB8")] public class InformationAnalysisTable : DataTable { #region Construction & Cloning [StorableConstructor] protected InformationAnalysisTable(StorableConstructorFlag _) : base(_) { } protected InformationAnalysisTable(InformationAnalysisTable original, Cloner cloner) : base(original, cloner) { } public InformationAnalysisTable() : base() { } public InformationAnalysisTable(string name) : base(name) { } public InformationAnalysisTable(string name, string description) : base(name, description) { } public override IDeepCloneable Clone(Cloner cloner) { return new InformationAnalysisTable(this, cloner); } #endregion } }