- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Analysis (added) merged: 16452-16454,16462,16472,16483,16529-16530,16539,16558-16559 /trunk/HeuristicLab.Analysis merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Analysis/3.3/DataVisualization/DataTableHistory.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Analysis { … … 31 31 /// </summary> 32 32 [Item("DataTableHistory", "Represents history values of data tables.")] 33 [Storable Class]33 [StorableType("5ECB8C15-4724-4B9A-B667-055CC2FD713A")] 34 34 public class DataTableHistory : ItemCollection<DataTable> { 35 35 public static new Image StaticItemImage { … … 38 38 39 39 [StorableConstructor] 40 protected DataTableHistory( bool deserializing) : base(deserializing) { }40 protected DataTableHistory(StorableConstructorFlag _) : base(_) { } 41 41 protected DataTableHistory(DataTableHistory original, Cloner cloner) : base(original, cloner) { } 42 42 public DataTableHistory() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.