Index: dam engine/trunk/src/Deltares.DamEngine.Interface/Interface.cs
===================================================================
diff -u -r302 -r305
--- dam engine/trunk/src/Deltares.DamEngine.Interface/Interface.cs (.../Interface.cs) (revision 302)
+++ dam engine/trunk/src/Deltares.DamEngine.Interface/Interface.cs (.../Interface.cs) (revision 305)
@@ -8,5 +8,31 @@
{
public class Interface
{
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The model input.
+ public Interface(string modelInput)
+ {
+
+ }
+
+ ///
+ /// Validates the model.
+ ///
+ /// Valdiation messages in an XML string
+ public string Validate()
+ {
+ return null;
+ }
+
+ ///
+ /// Runs this instance.
+ ///
+ /// Errors and warnings in an XML string
+ public string Run()
+ {
+ return null;
+ }
}
}