Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/10 01:03:30 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on ItemAttribute and named items
  • corrected version information in Optimizer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLabOptimizerPlugin.cs.frame

    r2790 r2931  
    2020#endregion
    2121
     22using System.Windows.Forms;
    2223using HeuristicLab.PluginInfrastructure;
    2324
     
    3334  public class HeuristicLabOptimizerPlugin : PluginBase {
    3435  }
     36
     37  [Application("Optimizer", "HeuristicLab Optimizer 3.3.0.$WCREV$")]
     38  internal class HeuristicLabOptimizerApplication : ApplicationBase {
     39    public override void Run() {
     40      OptimizerMainForm mainForm = new OptimizerMainForm(typeof(IOptimizerUserInterfaceItemProvider));
     41      Application.Run(mainForm);
     42    }
     43  }
    3544}
Note: See TracChangeset for help on using the changeset viewer.