Index: DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Importer/CsvImporter.cs
===================================================================
diff -u -r3159 -r3160
--- DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Importer/CsvImporter.cs (.../CsvImporter.cs) (revision 3159)
+++ DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Importer/CsvImporter.cs (.../CsvImporter.cs) (revision 3160)
@@ -27,8 +27,18 @@
namespace Deltares.LayerOnSlopeTool.Importer
{
+ ///
+ /// Holds static methods for reading data from csv files.
+ ///
public class CsvImporter
{
+ ///
+ /// Reads the locations.
+ ///
+ /// Name of the input folder.
+ /// The locations.
+ /// The errors.
+ ///
public static bool ReadLocations(string inputFolderName, out List locations, out List errors)
{
locations = new List();
@@ -66,6 +76,13 @@
}
}
+ ///
+ /// Reads the surface lines.
+ ///
+ /// Name of the input folder.
+ /// The surface lines.
+ /// The errors.
+ ///
public static bool ReadSurfaceLines(string inputFolderName, out List surfaceLines, out List errors)
{
var result = ReadSurfaceLinesCsv(inputFolderName, out surfaceLines, out errors);