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("QualityTrailSummaryTable", "DataTable that contains a compact description of the quality trail.")]
|
---|
10 | [StorableType("CF7B9594-9A6E-4756-987E-66019366586A")]
|
---|
11 | public class QualityTrailSummaryTable : DataTable {
|
---|
12 |
|
---|
13 | #region Construction & Cloning
|
---|
14 |
|
---|
15 | [StorableConstructor]
|
---|
16 | protected QualityTrailSummaryTable(StorableConstructorFlag _) : base(_) { }
|
---|
17 | protected QualityTrailSummaryTable(QualityTrailSummaryTable original, Cloner cloner) : base(original, cloner) { }
|
---|
18 | public QualityTrailSummaryTable() : base() { }
|
---|
19 | public QualityTrailSummaryTable(string name) : base(name) { }
|
---|
20 | public QualityTrailSummaryTable(string name, string description) : base(name, description) { }
|
---|
21 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
22 | return new QualityTrailSummaryTable(this, cloner);
|
---|
23 | }
|
---|
24 | #endregion
|
---|
25 |
|
---|
26 | }
|
---|
27 |
|
---|
28 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.