Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/24/11 23:56:39 (13 years ago)
Author:
mkommend
Message:

#1313: Implemented new views for data analysis solutions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolicExpressionView.cs

    r5809 r5829  
    2020#endregion
    2121
     22using System;
    2223using System.Collections.Generic;
    2324using System.Windows.Forms;
     
    2526using HeuristicLab.MainForm.WindowsForms;
    2627using HeuristicLab.PluginInfrastructure;
    27 using System;
    2828
    2929namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views {
     
    3434    List<ISymbolicExpressionTreeStringFormatter> treeFormattersList = new List<ISymbolicExpressionTreeStringFormatter>();
    3535
    36     public new SymbolicExpressionTree Content {
    37       get { return (SymbolicExpressionTree)base.Content; }
     36    public new ISymbolicExpressionTree Content {
     37      get { return (ISymbolicExpressionTree)base.Content; }
    3838      set { base.Content = value; }
    3939    }
Note: See TracChangeset for help on using the changeset viewer.