Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/12/13 13:32:34 (11 years ago)
Author:
mkommend
Message:

#1734: Added StorableConstructor to all storable DataImporter classes.

Location:
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data

    • Property svn:ignore
      •  

        old new  
        11bin
        22obj
         3*.user
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/CommandBase/ColumnGroupCommandWithAffectedColumnsBase.cs

    r7267 r9614  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    26 using System.Xml;
    2722using HeuristicLab.DataImporter.Data.Model;
    2823using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     
    3126  [StorableClass]
    3227  public abstract class ColumnGroupCommandWithAffectedColumnsBase : ColumnGroupCommandBase {
    33     private ColumnGroupCommandWithAffectedColumnsBase()
    34       : base(null,string.Empty) {
    35     }
     28    [StorableConstructor]
     29    protected ColumnGroupCommandWithAffectedColumnsBase(bool deserializing) : base(deserializing) { }
    3630
    3731    protected ColumnGroupCommandWithAffectedColumnsBase(DataSet dataSet, string columnGroupName, int[] affectedColumns)
Note: See TracChangeset for help on using the changeset viewer.