Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/03/09 17:10:15 (15 years ago)
Author:
mkommend
Message:

removed generic base class ViewBase<T> (ticket #771)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.Test/3.2/FormView2.cs

    r2458 r2464  
    1010
    1111namespace HeuristicLab.MainForm.Test {
    12   public partial class FormView2 : ViewBase<IEnumerable> {
     12  public partial class FormView2 : ViewBase, IView<IEnumerable> {
    1313    private int[] array;
    1414    public FormView2() {
    1515      InitializeComponent();
    1616    }
     17
     18    #region IView<IEnumerable> Members
     19
     20    public void View(IEnumerable item) {
     21      throw new NotImplementedException();
     22    }
     23
     24    public IEnumerable Item {
     25      get { throw new NotImplementedException(); }
     26    }
     27
     28    #endregion
    1729  }
    1830}
Note: See TracChangeset for help on using the changeset viewer.