Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/DataAnalysisExperimentWizard.cs @ 7808

Last change on this file since 7808 was 7808, checked in by spimming, 12 years ago

#1807:

  • experiment wizard initial commit
  • plugin file frames added
  • wizard renamed
File size: 430 bytes
Line 
1
2using HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard;
3namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
4  public class DataAnalysisExperimentWizard {
5    private WizardBase wizard;
6
7    public DataAnalysisExperimentWizard() {
8      wizard = new WizardBase();
9      wizard.WizardPages.Add(new ProblemDataPage());
10    }
11
12    public void Show() {
13      wizard.Show();
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.