Changeset 17097 for stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/ScheduledTask.cs
- 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/ScheduledTask.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. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding { 28 28 [Item("ScheduledTask", "Represents a task that has been scheduled already.")] 29 [Storable Class]29 [StorableType("8E947B77-37DF-4451-ACF4-03251516FC52")] 30 30 public class ScheduledTask : Item { 31 31 … … 49 49 50 50 [StorableConstructor] 51 protected ScheduledTask( bool deserializing) : base(deserializing) { }51 protected ScheduledTask(StorableConstructorFlag _) : base(_) { } 52 52 protected ScheduledTask(ScheduledTask original, Cloner cloner) 53 53 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.