source:
branches/2719_HeuristicLab.DatastreamAnalysis/HeuristicLab.DatastreamAnalysis/3.4/IProxyEnsembleModel.cs
@
17169
Last change on this file since 17169 was 15867, checked in by jzenisek, 7 years ago | |
---|---|
File size: 405 bytes |
Rev | Line | |
---|---|---|
[15867] | 1 | using System; |
2 | using System.Collections.Generic; | |
3 | using System.Linq; | |
4 | using System.Text; | |
5 | using System.Threading.Tasks; | |
6 | using HeuristicLab.Core; | |
7 | ||
8 | namespace HeuristicLab.DatastreamAnalysis { | |
9 | public interface IProxyEnsembleModel : IParameterizedItem { | |
10 | IEnumerable<IParameterizedItem> ExecutionContextItems { get; } | |
11 | event EventHandler Reset; | |
12 | event EventHandler ModelChanged; | |
13 | } | |
14 | } |
Note: See TracBrowser
for help on using the repository browser.