using System; using System.Collections.Generic; using Deltares.DamEngine.Calculators.KernelWrappers.Common; using Deltares.DamEngine.Calculators.KernelWrappers.Interfaces; using Deltares.DamEngine.Data.General; using Deltares.DamEngine.Data.General.Results; using Deltares.DamEngine.Data.Standard.Logging; namespace Deltares.DamEngine.Calculators.KernelWrappers.DamPipingBligh { public class DamPipingBlighKernel : IKernel { public IKernelDataInput Prepare(Location location) { throw new NotImplementedException(); } public IKernelDataInput Prepare(DamKernelInput damKernelInput) { throw new NotImplementedException(); } public int Validate(IKernelDataInput kernelDataInput, IList messages) { throw new NotImplementedException(); } public IKernelDataOutput Execute(IKernelDataInput kernelDataInput, IList messages) { throw new NotImplementedException(); } public void PostProcess(IKernelDataOutput kernelDataOutput, DesignResult designResult) { throw new NotImplementedException(); } } }