Changeset 3428 for trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
- Timestamp:
- 04/20/10 00:39:59 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IRun.cs
r3376 r3428 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using System.Drawing; 26 using System; 25 27 26 28 namespace HeuristicLab.Optimization { … … 32 34 IDictionary<string, IItem> Parameters { get; } 33 35 IDictionary<string, IItem> Results { get; } 36 37 Color Color {get;set;} 38 bool Visible { get; set; } 39 event EventHandler Changed; 34 40 } 35 41 }
Note: See TracChangeset
for help on using the changeset viewer.