Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/17/13 13:35:44 (11 years ago)
Author:
mkommend
Message:

#2081: Integrated new HL path data types from the branch.

Location:
trunk/sources/HeuristicLab.Data/3.3
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/3.3

  • trunk/sources/HeuristicLab.Data/3.3/Path Types/TextFileValue.cs

    r9706 r9714  
    2727  [Item("TextFile", "Represents the content and path to a text file.")]
    2828  [StorableClass]
    29   public class TextFile : FileValue {
     29  public class TextFileValue : FileValue {
    3030    [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)
    3333      : base(original, cloner) {
    3434    }
    3535    public override IDeepCloneable Clone(Cloner cloner) {
    36       return new TextFile(this, cloner);
     36      return new TextFileValue(this, cloner);
    3737    }
    3838
    39     public TextFile()
     39    public TextFileValue()
    4040      : base() {
    4141    }
Note: See TracChangeset for help on using the changeset viewer.