//----------------------------------------------------------------------- // // Copyright (c) 2011 Deltares. All rights reserved. // // Rob Brinkman // rob.brinkman@deltares.nl // 23-06-2011 // base class for evaluators //----------------------------------------------------------------------- using System; using Deltares.Dam.Data; using Deltares.DamEngine.Data.General; namespace Deltares.DamEngine.Data.RWScenarios { public class RWEvaluator { protected Location location = null; protected SoilGeometry soilGeometry = null; private Enum[] previousChoices = null; public RWEvaluator() { } public virtual Enum Evaluate(Location location, SoilGeometry soilGeometry, params Enum[] previousChoices) { this.location = location; this.soilGeometry = soilGeometry; this.previousChoices = previousChoices; return null; } } }