using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using HeuristicLab.Optimization.Views; using HeuristicLab.MainForm; namespace HeuristicLab.Problems.ArtificialAnt.Views { [View("ArtificialAntProblem View")] [Content(typeof(ArtificialAntProblem), true)] public partial class ArtificialAntProblemView : ProblemView { public new ArtificialAntProblem Content { get { return (ArtificialAntProblem)base.Content; } set { base.Content = value; } } /// /// Initializes a new instance of . /// public ArtificialAntProblemView() { InitializeComponent(); } /// /// Intializes a new instance of with the given . /// /// The item that should be displayed. public ArtificialAntProblemView(ArtificialAntProblem content) : this() { Content = content; } } }