- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Task.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.Encodings.ScheduleEncoding { 29 29 [Item("Task", "Represents a task that has to be scheduled.")] 30 [Storable Class]30 [StorableType("D28FB463-EA44-493B-B232-A851F22AFBAA")] 31 31 public class Task : Item, INotifyPropertyChanged { 32 32 … … 92 92 93 93 [StorableConstructor] 94 protected Task( bool deserializing) : base(deserializing) { }94 protected Task(StorableConstructorFlag _) : base(_) { } 95 95 protected Task(Task original, Cloner cloner) 96 96 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.