Last change
on this file since 16658 was
16573,
checked in by gkronber, 6 years ago
|
#2520: changed HeuristicLab.FLA addon to compile with new HL.Persistence
|
File size:
1.1 KB
|
Line | |
---|
1 |
|
---|
2 | using HeuristicLab.Common;
|
---|
3 | using HeuristicLab.Core;
|
---|
4 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
5 | using HEAL.Attic;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Analysis.FitnessLandscape.DataTables {
|
---|
8 |
|
---|
9 | [Item("InformationAnalysisTable", "DataTable that contains series with results of an information analysis")]
|
---|
10 | [StorableType("6E9BB524-0ECA-4796-AB6D-4D6B4A083FB8")]
|
---|
11 | public class InformationAnalysisTable : DataTable {
|
---|
12 |
|
---|
13 | #region Construction & Cloning
|
---|
14 |
|
---|
15 | [StorableConstructor]
|
---|
16 | protected InformationAnalysisTable(StorableConstructorFlag _) : base(_) { }
|
---|
17 | protected InformationAnalysisTable(InformationAnalysisTable original, Cloner cloner) : base(original, cloner) { }
|
---|
18 | public InformationAnalysisTable() : base() { }
|
---|
19 | public InformationAnalysisTable(string name) : base(name) { }
|
---|
20 | public InformationAnalysisTable(string name, string description) : base(name, description) { }
|
---|
21 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
22 | return new InformationAnalysisTable(this, cloner);
|
---|
23 | }
|
---|
24 | #endregion
|
---|
25 |
|
---|
26 | }
|
---|
27 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.