Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence.GUI/3.3/HeuristicLabPersistenceGUIPlugin.cs @ 1530

Last change on this file since 1530 was 1530, checked in by gkronber, 15 years ago

Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576

File size: 680 bytes
Line 
1using System.Windows.Forms;
2using HeuristicLab.PluginInfrastructure;
3
4namespace HeuristicLab.Persistence.GUI {
5
6  [ClassInfo(Name = "HeuristicLab.Persistence.GUI-3.3")]
7  [PluginFile(Filename = "HeuristicLab.Persistence.GUI-3.3.dll", Filetype = PluginFileType.Assembly)]
8  public class HeuristicLabPersistencePlugin : PluginBase {}
9
10
11  [ClassInfo(Name = "Persistence Configuration")]
12  public class HeuristicLabPersistenceApplication : ApplicationBase {
13    public override void Run() {
14      Application.EnableVisualStyles();
15      Application.SetCompatibleTextRenderingDefault(false);
16      Application.Run(new PersistenceConfigurationForm());
17    }
18  }
19
20}
Note: See TracBrowser for help on using the repository browser.