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 deleted
2 edited
2 copied

Legend:

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

  • trunk/sources/HeuristicLab.Data/3.3/HeuristicLab.Data-3.3.csproj

    r8600 r9714  
    117117    <Compile Include="Comparison.cs" />
    118118    <Compile Include="ComparisonType.cs" />
     119    <Compile Include="Path Types\DirectoryValue.cs" />
     120    <Compile Include="Path Types\FileValue.cs" />
     121    <Compile Include="Path Types\PathValue.cs" />
     122    <Compile Include="Path Types\TextFileValue.cs" />
    119123    <Compile Include="PercentMatrix.cs" />
    120124    <Compile Include="PercentArray.cs" />
     
    212216  -->
    213217  <PropertyGroup>
    214    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     218    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    215219set ProjectDir=$(ProjectDir)
    216220set SolutionDir=$(SolutionDir)
     
    219223call PreBuildEvent.cmd
    220224</PreBuildEvent>
    221 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     225    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
    222226export ProjectDir=$(ProjectDir)
    223227export SolutionDir=$(SolutionDir)
  • 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.