Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/Erc/IErcItem.cs @ 14905

Last change on this file since 14905 was 14905, checked in by pkimmesw, 7 years ago

#2665 Made ErcOptions checkable

File size: 240 bytes
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Base.Erc {
2  using System;
3
4  using HeuristicLab.Core;
5
6  public interface IErcItem : IItem {
7    event EventHandler<bool> EnabledChanged;
8    bool IsEnabled { get; set; }
9  }
10}
Note: See TracBrowser for help on using the repository browser.