Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/28/19 12:41:36 (5 years ago)
Author:
gkronber
Message:

#2971: made branch compile with current version of trunk

Location:
branches/2971_named_intervals
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2971_named_intervals

    • Property svn:ignore set to
      packages
  • branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationProblem.cs

    r15583 r16628  
    2323using HeuristicLab.Core;
    2424using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HEAL.Attic;
    2526
    2627namespace HeuristicLab.Problems.DataAnalysis {
    27   [StorableClass]
     28  [StorableType("8C336C29-8B17-4713-BC30-70F05ED190BA")]
    2829  [Item("Classification Problem", "A general classification problem.")]
    2930  public class ClassificationProblem : DataAnalysisProblem<IClassificationProblemData>, IClassificationProblem, IStorableContent {
     
    3132
    3233    [StorableConstructor]
    33     protected ClassificationProblem(bool deserializing) : base(deserializing) { }
     34    protected ClassificationProblem(StorableConstructorFlag _) : base(_) { }
    3435    protected ClassificationProblem(ClassificationProblem original, Cloner cloner) : base(original, cloner) { }
    3536    public override IDeepCloneable Clone(Cloner cloner) { return new ClassificationProblem(this, cloner); }
Note: See TracChangeset for help on using the changeset viewer.