Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / engine / AnyInputPort.hxx
index ed9d9581a72705b6348149859792010251132e43..ff19ca71f586759d10515aa1fdf4e4346dd5d6f0 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
+//
 #ifndef __ANYINPUTPORT_HXX__
 #define __ANYINPUTPORT_HXX__
 
@@ -20,10 +38,12 @@ namespace YACS
       int getIntValue() const { return _value->getIntValue(); }
       void put(Any *data);
       void *get() const;
+      virtual std::string getAsString();
       virtual bool isEmpty();
       void put(const void *data) throw(ConversionException);
       InputPort *clone(Node *newHelder) const;
       std::string dump();
+      virtual std::string typeName() {return "YACS__ENGINE__AnyInputPort";}
     protected:
       Any *_value;
     };