Last change
on this file since 3188 was
2931,
checked in by swagner, 15 years ago
|
Operator architecture refactoring (#95)
- worked on ItemAttribute and named items
- corrected version information in Optimizer
|
File size:
762 bytes
|
Rev | Line | |
---|
[2754] | 1 | using System.Windows.Forms;
|
---|
| 2 | using HeuristicLab.PluginInfrastructure;
|
---|
| 3 |
|
---|
| 4 | namespace HeuristicLab.Persistence.GUI {
|
---|
| 5 |
|
---|
| 6 | [Plugin("HeuristicLab.Persistence.GUI", "3.3.0.$WCREV$")]
|
---|
| 7 | [PluginFile("HeuristicLab.Persistence.GUI-3.3.dll", PluginFileType.Assembly)]
|
---|
| 8 | [PluginDependency("HeuristicLab.Persistence", "3.3")]
|
---|
| 9 | public class HeuristicLabPersistenceGUIPlugin : PluginBase { }
|
---|
| 10 |
|
---|
| 11 |
|
---|
[2931] | 12 | [Application("Persistence Configuration", "Configure type mappings of persistence")]
|
---|
[2754] | 13 | public class HeuristicLabPersistenceGUIApplication : ApplicationBase {
|
---|
| 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.