Changeset 9597
- Timestamp:
- 06/07/13 12:13:29 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/ChangeValues/FilterSavitzkyGolayCommand.cs
r7267 r9597 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using System.Text; 26 using System.Xml; 25 using HeuristicLab.DataImporter.Command.View; 27 26 using HeuristicLab.DataImporter.Data; 28 27 using HeuristicLab.DataImporter.Data.CommandBase; 29 28 using HeuristicLab.DataImporter.Data.Model; 30 using HeuristicLab.DataImporter.Command.View;31 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 32 30 … … 39 37 private ICollection<int> oldSortedColumnIndices; 40 38 39 [Storable] 41 40 public int WindowLeft { get; set; } 42 41 [Storable] 43 42 public int WindowRight { get; set; } 44 43 [Storable] 45 44 public int Order { get; set; } 46 45 [Storable] 47 46 public int OrderOfDerivative { get; set; } 48 47
Note: See TracChangeset
for help on using the changeset viewer.