Salome HOME
Algorithm of level of parallelism has been extended to more complex cases.
[modules/yacs.git] / src / engine / PointVisitor.hxx
index 28f907b8560aeb16cfdbd8e85bcf39bceba07a95..c84d025895ecee511098d4205d33220935f5a802 100644 (file)
@@ -25,6 +25,7 @@ namespace YACS
 {
   namespace ENGINE
   {
+    class NotSimpleCasePoint;
     class ElementaryPoint;
     class LinkedBlocPoint;
     class ForkBlocPoint;
@@ -38,6 +39,8 @@ namespace YACS
       virtual void endLinkedBlocPoint(LinkedBlocPoint *pt) = 0;
       virtual void beginElementaryPoint(ElementaryPoint *pt) = 0;
       virtual void endElementaryPoint(ElementaryPoint *pt) = 0;
+      virtual void beginNotSimpleCasePoint(NotSimpleCasePoint *pt) = 0;
+      virtual void endNotSimpleCasePoint(NotSimpleCasePoint *pt) = 0;
     };
   }
 }