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.Backend.Csv
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Backend.Csv

    • Property svn:ignore
      •  

        old new  
        33HeuristicLabDataImporterBackendCsvPlugin.cs
        44Plugin.cs
         5*.user
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Backend.Csv/CsvImportCommand.cs

    r7267 r9614  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    2422using System.IO;
    25 using System.Linq;
    26 using System.Text;
    27 using System.Xml;
    28 using System.Windows.Forms;
    29 using HeuristicLab.DataImporter.Data;
     23using HeuristicLab.DataImporter.Data.CommandBase;
    3024using HeuristicLab.DataImporter.Data.Model;
    31 using HeuristicLab.DataImporter.Data.CommandBase;
    3225using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3326
     
    3730    private ColumnGroup newColumnGroup;
    3831
    39     private CsvImportCommand()
    40       : base(null) {
    41     }
     32    [StorableConstructor]
     33    protected CsvImportCommand(bool deserializing) : base(deserializing) { }
    4234
    4335    public CsvImportCommand(DataSet dataSet)
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Backend.Csv/CsvImporter.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.IO;
     22using HeuristicLab.DataImporter.Data.CommandBase;
     23using HeuristicLab.DataImporter.Data.Model;
    2724using HeuristicLab.DataImporter.DataProcessor;
    28 using HeuristicLab.DataImporter.Data.Model;
    29 using HeuristicLab.DataImporter.Data.CommandBase;
    3025
    3126namespace HeuristicLab.DataImporter.Backend.Csv {
Note: See TracChangeset for help on using the changeset viewer.