Index: dam engine/trunk/src/Deltares.DamEngine.Interface/EngineInterface.cs
===================================================================
diff -u -r501 -r520
--- dam engine/trunk/src/Deltares.DamEngine.Interface/EngineInterface.cs (.../EngineInterface.cs) (revision 501)
+++ dam engine/trunk/src/Deltares.DamEngine.Interface/EngineInterface.cs (.../EngineInterface.cs) (revision 520)
@@ -30,6 +30,9 @@
namespace Deltares.DamEngine.Interface
{
+ ///
+ /// The main interface class for accessing the Dam Engine
+ ///
public class EngineInterface
{
private ProgressDelegate progressDelegate;
@@ -39,7 +42,7 @@
///
/// Initializes a new instance of the class.
///
- /// The model input.
+ /// Xml string containing the model input.
public EngineInterface(string modelInput)
{
if (String.IsNullOrEmpty(modelInput))
@@ -150,9 +153,10 @@
///
/// Runs this instance.
///
- /// Errors and warnings in an XML string
- public string Run(out string outputXml)
+ /// Returns the output in an XML string
+ public string Run()
{
+ string outputXml;
SendMessage(new LogMessage() { MessageType = LogMessageType.Info, Message = "Start calculation" });
switch (DamProjectData.DamProjectType)