Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-Refactoring-713/sources/HeuristicLab.GP/3.3/FunView.cs @ 2202

Last change on this file since 2202 was 2202, checked in by gkronber, 15 years ago

Created a branch for #713

File size: 606 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Data;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9using HeuristicLab.Core;
10
11namespace HeuristicLab.GP {
12  public partial class FunView : ViewBase {
13    public IFunction Function {
14      get { return (IFunction)base.Item; }
15      set { base.Item = value; }
16    }
17
18    public FunView(IFunction function) : base() {     
19      InitializeComponent();
20    }
21
22    protected override void UpdateControls() {
23      base.UpdateControls();
24    }
25  }
26}
Note: See TracBrowser for help on using the repository browser.