- Timestamp:
- 01/12/16 17:17:16 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataPreprocessing/3.4/PreprocessingContext.cs
r13502 r13504 30 30 namespace HeuristicLab.DataPreprocessing { 31 31 [Item("PreprocessingContext", "PreprocessingContext")] 32 [StorableClass] 32 33 public class PreprocessingContext : NamedItem, IStorableContent { 33 34 … … 63 64 64 65 public PreprocessingContext() : this(new RegressionProblemData()) { } 65 public PreprocessingContext(IItem source) { 66 public PreprocessingContext(IItem source) 67 : base("PreprocessingContext") { 66 68 Import(source); 67 68 69 } 69 70 70 71 [StorableConstructor] 71 pr ivatePreprocessingContext(bool deserializing)72 protected PreprocessingContext(bool deserializing) 72 73 : base(deserializing) { } 73 74 protected PreprocessingContext(PreprocessingContext original, Cloner cloner)
Note: See TracChangeset
for help on using the changeset viewer.