Changeset 17097 for stable/HeuristicLab.Data/3.3/Path Types/FileValue.cs
- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Data
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Data (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.Data merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3 (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.Data/3.3 merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3/Path Types/FileValue.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.Data { 28 28 [Item("FileValue", "Represents the path to a file.")] 29 [Storable Class]29 [StorableType("55D686E9-29B7-41C2-8693-D1CA6E792765")] 30 30 public class FileValue : PathValue { 31 31 [Storable] … … 41 41 42 42 [StorableConstructor] 43 protected FileValue( bool deserializing) : base(deserializing) { }43 protected FileValue(StorableConstructorFlag _) : base(_) { } 44 44 protected FileValue(FileValue original, Cloner cloner) 45 45 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.