Free cookie consent management tool by TermsFeed Policy Generator

source: branches/New Persistence Exploration/Persistence/HeuristicLab.Persistence.GUI/Program.cs @ 1398

Last change on this file since 1398 was 1373, checked in by epitzer, 15 years ago

Simple GUI configuration for decomposers. (#506)

File size: 380 bytes
Line 
1using System;
2using System.Windows.Forms;
3using HeuristicLab.Persistence.GUI;
4
5namespace HeuristicLab.Persistence.GUI {
6
7  static class Program {   
8    [STAThread]
9    static void Main() {
10      Application.EnableVisualStyles();
11      Application.SetCompatibleTextRenderingDefault(false);
12      Application.Run(new PersistenceConfigurationForm());
13    }
14  }
15}
Note: See TracBrowser for help on using the repository browser.