Changeset 5995 for branches/histogram/HeuristicLab.Analysis
- Timestamp:
- 04/09/11 14:48:19 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram/HeuristicLab.Analysis/3.3/DataVisualization/HistogramHistory.cs
r5961 r5995 32 32 [Item("HistogramHistory", "Represents history values of histograms.")] 33 33 [StorableClass] 34 public class HistogramHistory : ItemCollection<Histogram> {34 public class HistogramHistory : CheckedItemList<Histogram> { 35 35 public override Image ItemImage { 36 36 get { return HeuristicLab.Common.Resources.VSImageLibrary.Cab; } … … 41 41 protected HistogramHistory(HistogramHistory original, Cloner cloner) : base(original, cloner) { } 42 42 public HistogramHistory() : base() { } 43 public HistogramHistory(IEnumerable<Histogram> collection) : base( new ItemCollection<Histogram>(collection)) { }43 public HistogramHistory(IEnumerable<Histogram> collection) : base(collection) { } 44 44 45 45 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.