Salome HOME
updated copyright message
[modules/yacs.git] / src / engine / Visitor.hxx
index 2a16faac5cea296a308cfcde625250401fa47d0c..e45c14341c4bfbd75acf9861e208e242c70a2732 100644 (file)
@@ -1,3 +1,22 @@
+// Copyright (C) 2006-2023  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 __VISITOR_HXX__
 #define __VISITOR_HXX__
 
@@ -14,12 +33,16 @@ namespace YACS
     class ElementaryNode;
     class ComposedNode;
     class ForEachLoop;
+    class ForEachLoopDyn;
+    class OptimizerLoop;
+    class DynParaLoop;
     class InlineNode;
     class InlineFuncNode;
     class Loop;
     class ForLoop;
     class Proc;
     class ServiceNode;
+    class ServerNode;
     class ServiceInlineNode;
     class DataNode;
     class Switch;
@@ -35,12 +58,16 @@ namespace YACS
       virtual void visitBloc(Bloc *node) = 0;
       virtual void visitElementaryNode(ElementaryNode *node) = 0;
       virtual void visitForEachLoop(ForEachLoop *node) = 0;
+      virtual void visitForEachLoopDyn(ForEachLoopDyn *node) = 0;
+      virtual void visitOptimizerLoop(OptimizerLoop *node) = 0;
+      virtual void visitDynParaLoop(DynParaLoop *node) = 0;
       virtual void visitForLoop(ForLoop *node) = 0;
       virtual void visitInlineNode(InlineNode *node) = 0;
       virtual void visitInlineFuncNode(InlineFuncNode *node) = 0;
       virtual void visitLoop(Loop *node) = 0;
       virtual void visitProc(Proc *node) = 0;
       virtual void visitServiceNode(ServiceNode *node) = 0;
+      virtual void visitServerNode(ServerNode *node) = 0;
       virtual void visitServiceInlineNode(ServiceInlineNode *node) = 0;
       virtual void visitSwitch(Switch *node) = 0;
       virtual void visitWhileLoop(WhileLoop *node) = 0;