Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.OKB.Cockpit.Admin/IOperatorGraphEditor.cs @ 4408

Last change on this file since 4408 was 4311, checked in by swagner, 14 years ago

Integrated OKB clients for HL 3.3 (#1166)

File size: 492 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows.Forms;
6
7namespace 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.