Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/yacs.git] / src / runtime / OutNode.cxx
index d8cb937d9b636da3621ba4de9b15c41a1a70e3f6..241ac6af772f52d17a9e6f64282f4b23fac1107d 100644 (file)
@@ -1,6 +1,24 @@
+// Copyright (C) 2006-2012  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
-#include "OutNode.hxx"
 #include "PresetPorts.hxx"
+#include "OutNode.hxx"
 #include "Visitor.hxx"
 
 #include <iostream>
@@ -18,6 +36,12 @@ namespace YACS
   namespace ENGINE
     {
 
+/*! \class YACS::ENGINE::OutNode
+ *  \brief Class for data out node
+ *
+ * \ingroup Nodes
+ */
+
 const char OutNode::IMPL_NAME[]="XML";
 
 OutNode::OutNode(const std::string& name)
@@ -77,13 +101,13 @@ void OutNode::accept(Visitor *visitor)
   visitor->visitOutNode(this);
 }
 
-void OutNode::setData(InputPort* port, std::string& data)
+void OutNode::setData(InputPort* port, const std::string& data)
 {
   InputPresetPort *inp = dynamic_cast<InputPresetPort *>(port);
   inp->setData(data);
 }
 
-void OutNode::checkBasicConsistency() const throw(Exception)
+void OutNode::checkBasicConsistency() const throw(YACS::Exception)
 {
   DEBTRACE("OutNode::checkBasicConsistency");
   if (! _setOfOutputPort.empty())