Index: DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Data/SurfaceLine.cs
===================================================================
diff -u -r3089 -r3102
--- DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Data/SurfaceLine.cs (.../SurfaceLine.cs) (revision 3089)
+++ DamTools/LayerOnSlopeTool/trunk/src/Deltares.LayerOnSlopeTool.Data/SurfaceLine.cs (.../SurfaceLine.cs) (revision 3102)
@@ -19,10 +19,49 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using System.Collections.Generic;
+
namespace Deltares.LayerOnSlopeTool.Data
{
+ ///
+ /// Defines the surface line
+ ///
public class SurfaceLine
{
-
+ private readonly List surfaceLinePoints = new List();
+
+ ///
+ /// Gets the surface line points.
+ ///
+ ///
+ /// The surface line points.
+ ///
+ public List SurfaceLinePoints
+ {
+ get { return surfaceLinePoints; }
+ }
+
+ ///
+ /// Gets the surface line point by location.
+ ///
+ /// The x.
+ /// The z.
+ ///
+ public SurfaceLinePoint GetSurfaceLinePointByLocation(double x, double z)
+ {
+ // Todo implement
+ return null;
+ }
+
+ ///
+ /// Gets the type of the surface line point by.
+ ///
+ /// Type of the point.
+ ///
+ public SurfaceLinePoint GetSurfaceLinePointByType(CharacteristicPointType pointType)
+ {
+ // Todo implement
+ return null;
+ }
}
}
\ No newline at end of file