Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/IExporter.cs @ 6133

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

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

File size: 376 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows.Forms;
6using HeuristicLab.DataImporter.Data.Model;
7
8namespace HeuristicLab.DataImporter.DataProcessor {
9  public interface IExporter {
10    string Description { get; }
11    UserControl SettingsControl { get; }
12    void Export(DataSet dataSet);   
13  }
14}
Note: See TracBrowser for help on using the repository browser.