Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/16/10 19:15:09 (14 years ago)
Author:
swagner
Message:

Moved interfaces and classes for deep cloning from HeuristicLab.Core to HeuristicLab.Common (#975).

Location:
trunk/sources/HeuristicLab.Common/3.2
Files:
1 edited
3 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Common/3.2/Cloner.cs

    r3369 r3376  
    2323using System.Collections.Generic;
    2424using System.Text;
    25 using HeuristicLab.Common;
    2625
    27 namespace HeuristicLab.Core {
     26namespace HeuristicLab.Common {
    2827  /// <summary>
    2928  /// A helper class which is used to create deep clones of object graphs.
  • trunk/sources/HeuristicLab.Common/3.2/HeuristicLab.Common-3.2.csproj

    r3364 r3376  
    8888    <Compile Include="CancelEventArgs.cs" />
    8989    <None Include="HeuristicLabCommonPlugin.cs.frame" />
     90    <Compile Include="Cloner.cs" />
    9091    <Compile Include="IContent.cs" />
     92    <Compile Include="IDeepCloneable.cs" />
    9193    <Compile Include="ReferenceEqualityComparer.cs" />
    9294    <Compile Include="TypeExtensions.cs" />
    93     <Compile Include="ObservableList.cs" />
    9495    <Compile Include="DoubleExtensions.cs">
    9596      <SubType>Code</SubType>
    9697    </Compile>
    97     <Compile Include="EnumerableEventArgs.cs" />
    9898    <Compile Include="EventArgs.cs" />
    9999    <Compile Include="HeuristicLabCommonPlugin.cs" />
    100     <Compile Include="NotificationDictionary.cs" />
    101     <Compile Include="ObservableCollection.cs" />
    102100    <Compile Include="Properties\AssemblyInfo.cs" />
    103101  </ItemGroup>
  • trunk/sources/HeuristicLab.Common/3.2/IDeepCloneable.cs

    r3369 r3376  
    2222using System;
    2323
    24 namespace HeuristicLab.Core {
     24namespace HeuristicLab.Common {
    2525  public interface IDeepCloneable : ICloneable {
    2626    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.