Salome HOME
NRI : First integration.
[modules/superv.git] / src / GraphBase / DataFlowBase_EndOfSwitchNode.hxx
diff --git a/src/GraphBase/DataFlowBase_EndOfSwitchNode.hxx b/src/GraphBase/DataFlowBase_EndOfSwitchNode.hxx
new file mode 100644 (file)
index 0000000..9ac1195
--- /dev/null
@@ -0,0 +1,45 @@
+//=============================================================================
+// File      : DataFlowBase_EndOfSwitchNode.hxx
+// Created   : 2003
+// Author    : Jean Rahuel, CEA
+// Project   : SALOME
+// $Header:
+//=============================================================================
+
+#ifndef _DATAFLOWBASE_ENDOFSWITCHNODE_HXX
+#define _DATAFLOWBASE_ENDOFSWITCHNODE_HXX
+
+#include "DataFlowBase_GOTONode.hxx"
+
+namespace GraphBase {
+
+  class EndOfSwitchNode : public GOTONode {
+
+    private:
+    
+    public:
+
+      EndOfSwitchNode() ;
+      EndOfSwitchNode( CORBA::ORB_ptr ORB ,
+                  SALOME_NamingService* ptrNamingService ,
+                  const char * FuncName ,
+                  const SUPERV::ListOfStrings & aPythonFunction ,
+                  const char *NodeName ,
+                  const SUPERV::KindOfNode akind ,
+                  const SUPERV::SDate NodeFirstCreation ,
+                  const SUPERV::SDate NodeLastModification ,
+                  const char * NodeEditorRelease ,
+                  const char * NodeAuthor ,
+                  const char * NodeComment ,
+                  const bool   GeneratedName ,
+                  const long   X ,
+                  const long   Y ,
+                  int * Graph_prof_debug = NULL ,
+                  ostream * Graph_fdebug = NULL ) ;
+      virtual ~EndOfSwitchNode() ;
+
+  };
+  
+};
+
+#endif