using System; using System.Collections.Generic; using System.Linq; using System.Text; using HeuristicLab.Common; namespace HeuristicLab.Core { public interface IParameterBinding : IDeepCloneable { void Bind(); void Unbind(); } }