Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Persistence Test/HeuristicLab.Persistence.GUI/3.3/HeuristicLabPersistenceGUIPlugin.cs @ 2734

Last change on this file since 2734 was 2734, checked in by epitzer, 14 years ago

Fix persistence GUI ClassName (#802)

File size: 748 bytes
RevLine 
[1454]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)]
[1534]8  [Dependency(Dependency = "HeuristicLab.Persistence-3.3")]
[2734]9  public class HeuristicLabPersistenceGUIPlugin : PluginBase { }
[1454]10
11
12  [ClassInfo(Name = "Persistence Configuration")]
[2734]13  public class HeuristicLabPersistenceGUIApplication : ApplicationBase {
[1454]14    public override void Run() {
15      Application.EnableVisualStyles();
16      Application.SetCompatibleTextRenderingDefault(false);
17      Application.Run(new PersistenceConfigurationForm());
18    }
19  }
20
21}
Note: See TracBrowser for help on using the repository browser.