]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/engine/ConditionInputPort.hxx
Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / engine / ConditionInputPort.hxx
index 92910722e984f67742a7e44b4cbb525d469fcbaa..9c18ef01b66bfaef5171ebedfcdeac1d4be21db9 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 __CONDITIONINPUTPORT_HXX__
 #define __CONDITIONINPUTPORT_HXX__
 
@@ -9,27 +27,31 @@ namespace YACS
   {
     class WhileLoop;
 
-    class ConditionInputPort : public InputPort // public inheritance for correct dynamic cast from Port to ConditionInputPort in GUI part
+    class ConditionInputPort : public InputPort 
     {
       friend class WhileLoop;
+    private:
       OutPort *_outOfScopeBackLink;
-
       ConditionInputPort(const std::string& name, WhileLoop *node);
       ConditionInputPort(const ConditionInputPort& other, Node *newHelder);
-      ~ConditionInputPort();
+      virtual ~ConditionInputPort();
+      InputPort *clone(Node *newHelder) const;
+    public:
       void exSaveInit();
       void exRestoreInit();
-      InputPort *clone(Node *newHelder) const;
       bool isLinkedOutOfScope() const;
       void edNotifyReferencedBy(OutPort *fromPort);
       void edNotifyDereferencedBy(OutPort *fromPort);
       void *get() const;
-      void put(const void *data) throw(ConversionException);
+      virtual void put(const void *data) throw(ConversionException);
+      void put(Any *data) throw(ConversionException);
       std::string dump();
+      virtual std::string getAsString();
     protected:
       Any *_value;
     public:
       bool getValue() const { return (_value ? _value->getBoolValue() : false); }
+      virtual std::string typeName() {return "YACS__ENGINE__ConditionInputPort";}
     };
   }
 }