Last change
on this file since 1530 was
1530,
checked in by gkronber, 16 years ago
|
Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576
|
File size:
680 bytes
|
Line | |
---|
1 | using System.Windows.Forms;
|
---|
2 | using HeuristicLab.PluginInfrastructure;
|
---|
3 |
|
---|
4 | namespace 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.