- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Operators.Programmable/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Operators.Programmable/3.3/HeuristicLab.Operators.Programmable-3.3.csproj
r16454 r16462 108 108 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 109 109 </Reference> 110 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">110 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 111 111 <HintPath>..\..\packages\HEAL.Fossil.1.0.0\lib\netstandard2.0\HEAL.Fossil.dll</HintPath> 112 112 </Reference> -
branches/2520_PersistenceReintegration/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperator.cs
r16453 r16462 34 34 using HeuristicLab.Core; 35 35 using HeuristicLab.Persistence.Auxiliary; 36 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;36 using HEAL.Fossil; 37 37 using HeuristicLab.PluginInfrastructure; 38 38 using Microsoft.CSharp; … … 41 41 42 42 [Item("ProgrammableOperator", "An operator that can be programmed for arbitrary needs.")] 43 [Storable Class]43 [StorableType("741279E4-4C38-4D66-B9F1-03E0F8B47A78")] 44 44 public class ProgrammableOperator : Operator, IParameterizedNamedItem, IStorableContent, IProgrammableItem { 45 45 … … 166 166 167 167 [StorableConstructor] 168 protected ProgrammableOperator(bool deserializing) 169 : base(deserializing) { 168 protected ProgrammableOperator(StorableConstructorFlag _) : base(_) { 170 169 ProgrammableOperator.StaticInitialize(); 171 170 Assemblies = defaultAssemblyDict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value); -
branches/2520_PersistenceReintegration/HeuristicLab.Operators.Programmable/3.3/ProgrammableSingleSuccessorOperator.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Parameters; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 26 26 27 27 namespace HeuristicLab.Operators.Programmable { 28 28 29 29 [Item("ProgrammableSingleSuccessorOperator", "An operator that can be programmed for arbitrary needs and handle a single successor.")] 30 [Storable Class]30 [StorableType("61B9FA72-9C6D-46AC-B514-5240D71170D8")] 31 31 public class ProgrammableSingleSuccessorOperator : ProgrammableOperator { 32 32 … … 46 46 47 47 [StorableConstructor] 48 protected ProgrammableSingleSuccessorOperator( bool deserializing) : base(deserializing) { }48 protected ProgrammableSingleSuccessorOperator(StorableConstructorFlag _) : base(_) { } 49 49 protected ProgrammableSingleSuccessorOperator(ProgrammableSingleSuccessorOperator original, Cloner cloner) 50 50 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.