// // // // // $Revision: 915 $ // using System; namespace ICSharpCode.Core { /// /// Interface for classes that can evaluate conditions defined in the addin tree. /// public interface IConditionEvaluator { bool IsValid(object caller, Condition condition); } }