Salome HOME
Fix async optimizer loop with no point to evaluate.
[modules/yacs.git] / src / engine / DataFlowPort.hxx
index 3237b72ae5623bc352e9aca73ef04cf23b200f2f..c77dfa30afdb89215c3abb7c6c4eb20b6be138df 100644 (file)
@@ -1,7 +1,27 @@
+// Copyright (C) 2006-2019  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, or (at your option) any later version.
+//
+// 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 __DATAFLOWPORT_HXX__
 #define __DATAFLOWPORT_HXX__
 
-#include "Port.hxx"
+#include "YACSlibEngineExport.hxx"
+#include "DataPort.hxx"
 
 #include <string>
 
@@ -9,21 +29,20 @@ namespace YACS
 {
   namespace ENGINE
   {
-    class DataFlowPort : public virtual Port
+    class YACSLIBENGINE_EXPORT DataFlowPort : public virtual DataPort
     {
-    protected:
-      void* _data;
-      std::string _name;
     public:
       static const char NAME[];
     protected:
+      DataFlowPort(const DataFlowPort& other, Node *newHelder);
       DataFlowPort(const std::string& name, Node *node, TypeCode* type);
     public:
       std::string getNameOfTypeOfCurrentInstance() const;
-      TypeCode* edGetType() const;
-      virtual TypeCode * type();
-      virtual void edSetType(TypeCode* type);
-      std::string getName() const { return _name; }
+      TypeOfChannel getTypeOfChannel() const { return DATAFLOW; }
+      virtual ~DataFlowPort();
+      virtual std::string typeName() {return "YACS__ENGINE__DataFlowPort";}
+      virtual std::string valToStr();
+      virtual void valFromStr(std::string valstr);
     };
   }
 }