Rev | Line | |
---|
[4311] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Windows.Forms;
|
---|
| 6 |
|
---|
| 7 | namespace HeuristicLab.OKB.Cockpit.Admin {
|
---|
| 8 | public interface IOperatorGraphEditor {
|
---|
| 9 | string PlatformName { get; }
|
---|
| 10 | void Load(byte[] data);
|
---|
| 11 | Control CreateAlgorithmControl();
|
---|
| 12 | Control CreateProblemControl();
|
---|
| 13 | byte[] GetAlgorithmData(System.Windows.Forms.Control control);
|
---|
| 14 | byte[] GetProblemData(System.Windows.Forms.Control control);
|
---|
| 15 | }
|
---|
| 16 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.