Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / engine / AnyInputPort.cxx
index 7aa5602ae88fb4f761a6dc6ec3fb5944a4c8d0e2..544250f82e955f18e3a365f23521a30b6962c53e 100644 (file)
@@ -1,3 +1,21 @@
+//  Copyright (C) 2006-2008  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 "AnyInputPort.hxx"
 #include "TypeCode.hxx"
 #include <iostream>
@@ -72,6 +90,11 @@ void *AnyInputPort::get() const
   return (void *)_value;
 }
 
+std::string AnyInputPort::getAsString() 
+{
+  return getRuntime()->convertNeutralAsString(edGetType(),_value);
+}
+
 void AnyInputPort::put(const void *data) throw(ConversionException)
 {
   put((Any *)data);
@@ -86,7 +109,7 @@ std::string AnyInputPort::dump()
 {
   if(!_value)
     {
-      std::string what="AnyInputPort::get : no value currently in input whith name \""; what+=_name; what+="\"";
+      std::string what="AnyInputPort::get : no value currently in input port with name \""; what+=_name; what+="\"";
       throw Exception(what);
     }
   stringstream xmldump;