Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/CommandBase/ICommandGenerator.cs @ 6133

Last change on this file since 6133 was 6133, checked in by gkronber, 14 years ago

#1471: imported generic parts of DataImporter from private code base

File size: 331 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.DataImporter.Data.Model;
6
7namespace HeuristicLab.DataImporter.Data.CommandBase {
8  public interface ICommandGenerator {
9    bool Enabled(DataSetState state);
10    ICommand GenerateCommand(DataSet dataSet);
11  }
12}
Note: See TracBrowser for help on using the repository browser.