Changeset 11569 for branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3
- Timestamp:
- 11/24/14 14:44:42 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/AgingScheme.cs
r11568 r11569 20 20 #endregion 21 21 22 using System;23 using System.Drawing;24 22 using HeuristicLab.Common; 25 23 using HeuristicLab.Core; … … 37 35 [Item("AgingScheme", "Represents a certain type of an aging scheme.")] 38 36 [StorableClass] 39 public class AgingScheme : ValueTypeValue<AgingSchemes> { 40 public static new Image StaticItemImage { 41 get { return HeuristicLab.Common.Resources.VSImageLibrary.Enum; } 42 } 43 37 public class AgingScheme : EnumValue<AgingSchemes> { 44 38 [StorableConstructor] 45 39 protected AgingScheme(bool deserializing) : base(deserializing) { } 46 40 protected AgingScheme(AgingScheme original, Cloner cloner) : base(original, cloner) { } 47 public AgingScheme() : base() { } 41 42 public AgingScheme() : base(AgingSchemes.Linear) { } 48 43 public AgingScheme(AgingSchemes type) : base(type) { } 49 44
Note: See TracChangeset
for help on using the changeset viewer.