Last change
on this file since 2464 was
2464,
checked in by mkommend, 15 years ago
|
removed generic base class ViewBase<T> (ticket #771)
|
File size:
683 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Drawing;
|
---|
5 | using System.Data;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using System.Windows.Forms;
|
---|
9 | using HeuristicLab.MainForm.WindowsForms;
|
---|
10 |
|
---|
11 | namespace HeuristicLab.MainForm.Test {
|
---|
12 | public partial class FormView2 : ViewBase, IView<IEnumerable> {
|
---|
13 | private int[] array;
|
---|
14 | public FormView2() {
|
---|
15 | InitializeComponent();
|
---|
16 | }
|
---|
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
|
---|
29 | }
|
---|
30 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.