namespace Ringtoets.HydraRing.Calculation.Parsers { /// /// This interface describes components that obtain results from the output files of a Hydra-Ring calculation. /// public interface IHydraRingFileParser { /// /// Tries to parse output from a file in the based on a . /// /// The path to the directory which contains the output of the Hydra-Ring type I calculation. /// The section id to get the output for. void Parse(string workingDirectory, int sectionId); } }