Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization.Views/3.3/RunCollectionDictionaryView.cs @ 16996

Last change on this file since 16996 was 16996, checked in by gkronber, 5 years ago

#2520 Update plugin dependencies and references for HL.MetaOptimization for new persistence

File size: 731 bytes
Line 
1using System.Windows.Forms;
2using HeuristicLab.MainForm;
3using HeuristicLab.Data;
4using HeuristicLab.Optimization;
5using HeuristicLab.Core;
6
7namespace HeuristicLab.Problems.MetaOptimization.Views {
8  [View("RunCollectionDictionaryView")]
9  [Content(typeof(ItemDictionary<StringValue, RunCollection>), IsDefaultView = false)]
10  public sealed partial class RunCollectionDictionaryView : ItemDictionaryView<StringValue, RunCollection> {
11    public new ItemDictionary<StringValue, RunCollection> Content {
12      get { return (ItemDictionary<StringValue, RunCollection>)base.Content; }
13      set { base.Content = value; }
14    }
15
16    public RunCollectionDictionaryView() {
17      InitializeComponent();
18    }
19  }
20}
Note: See TracBrowser for help on using the repository browser.