Salome HOME
Fix make check with Python 2.7
[modules/yacs.git] / src / engine / AnyInputPort.hxx
index ed9d9581a72705b6348149859792010251132e43..3ea7ab32bbc72c11452970c7b8b0a78d06c8f67e 100644 (file)
@@ -1,17 +1,39 @@
+// 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
+//
+
 #ifndef __ANYINPUTPORT_HXX__
 #define __ANYINPUTPORT_HXX__
 
+#include "YACSlibEngineExport.hxx"
 #include "InputPort.hxx"
+#include "Mutex.hxx"
+
 #include <string>
 
 namespace YACS
 {
   namespace ENGINE
   {
-    class AnyInputPort : public InputPort
+    class YACSLIBENGINE_EXPORT AnyInputPort : public InputPort
     {
     public:
-      AnyInputPort(const std::string& name, Node *node, TypeCode* type);
+      AnyInputPort(const std::string& name, Node *node, TypeCode* type, bool canBeNull = false);
       AnyInputPort(const  AnyInputPort& other, Node *newHelder);
       virtual ~AnyInputPort();
       void exSaveInit();
@@ -20,12 +42,16 @@ 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;
+    private:
+      YACS::BASES::Mutex _mutex;
     };
   }
 }