Changeset 9714 for trunk/sources/HeuristicLab.Data/3.3/Path Types
- Timestamp:
- 07/17/13 13:35:44 (11 years ago)
- Location:
- trunk/sources/HeuristicLab.Data/3.3
- Files:
-
- 1 deleted
- 1 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Data/3.3
-
Property
svn:mergeinfo
set to
/branches/HeuristicLab.Data Path DataTypes/HeuristicLab.Data/3.3 merged eligible
-
Property
svn:mergeinfo
set to
-
trunk/sources/HeuristicLab.Data/3.3/Path Types/TextFileValue.cs
r9706 r9714 27 27 [Item("TextFile", "Represents the content and path to a text file.")] 28 28 [StorableClass] 29 public class TextFile : FileValue {29 public class TextFileValue : FileValue { 30 30 [StorableConstructor] 31 protected TextFile (bool deserializing) : base(deserializing) { }32 protected TextFile (TextFile original, Cloner cloner)31 protected TextFileValue(bool deserializing) : base(deserializing) { } 32 protected TextFileValue(TextFileValue original, Cloner cloner) 33 33 : base(original, cloner) { 34 34 } 35 35 public override IDeepCloneable Clone(Cloner cloner) { 36 return new TextFile (this, cloner);36 return new TextFileValue(this, cloner); 37 37 } 38 38 39 public TextFile ()39 public TextFileValue() 40 40 : base() { 41 41 }
Note: See TracChangeset
for help on using the changeset viewer.