Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ParameterBinding/HeuristicLab.Core/3.3/Interfaces/IParameterBinding.cs @ 4757

Last change on this file since 4757 was 4757, checked in by abeham, 13 years ago

#1258

  • worked on parameter binding (wip)
File size: 257 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Common;
6
7namespace HeuristicLab.Core {
8  public interface IParameterBinding : IDeepCloneable {
9    void Bind();
10    void Unbind();
11  }
12}
Note: See TracBrowser for help on using the repository browser.