Changeset 11569 for branches/ALPS
- Timestamp:
- 11/24/14 14:44:42 (10 years ago)
- Location:
- branches/ALPS
- Files:
-
- 3 added
- 3 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 -
branches/ALPS/HeuristicLab.Data.Views/3.3/HeuristicLab.Data.Views-3.3.csproj
r9714 r11569 208 208 <DependentUpon>StringConvertibleValueView.cs</DependentUpon> 209 209 </Compile> 210 <Compile Include="EnumValueView.cs"> 211 <SubType>UserControl</SubType> 212 </Compile> 213 <Compile Include="EnumValueView.Designer.cs"> 214 <DependentUpon>EnumValueView.cs</DependentUpon> 215 </Compile> 210 216 </ItemGroup> 211 217 <ItemGroup> -
branches/ALPS/HeuristicLab.Data/3.3/HeuristicLab.Data-3.3.csproj
r9714 r11569 117 117 <Compile Include="Comparison.cs" /> 118 118 <Compile Include="ComparisonType.cs" /> 119 <Compile Include="EnumValue.cs" /> 119 120 <Compile Include="Path Types\DirectoryValue.cs" /> 120 121 <Compile Include="Path Types\FileValue.cs" />
Note: See TracChangeset
for help on using the changeset viewer.