Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/16 17:17:16 (8 years ago)
Author:
pfleck
Message:

#2559
Fixed Plugin dependencies.
Fixed Storable and NamedItem stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataPreprocessing/3.4/PreprocessingContext.cs

    r13502 r13504  
    3030namespace HeuristicLab.DataPreprocessing {
    3131  [Item("PreprocessingContext", "PreprocessingContext")]
     32  [StorableClass]
    3233  public class PreprocessingContext : NamedItem, IStorableContent {
    3334
     
    6364
    6465    public PreprocessingContext() : this(new RegressionProblemData()) { }
    65     public PreprocessingContext(IItem source) {
     66    public PreprocessingContext(IItem source)
     67      : base("PreprocessingContext") {
    6668      Import(source);
    67 
    6869    }
    6970
    7071    [StorableConstructor]
    71     private PreprocessingContext(bool deserializing)
     72    protected PreprocessingContext(bool deserializing)
    7273      : base(deserializing) { }
    7374    protected PreprocessingContext(PreprocessingContext original, Cloner cloner)
Note: See TracChangeset for help on using the changeset viewer.