Salome HOME
aeb72437c45147af0fd369c041bd7fef8f687941
[modules/superv.git] / src / GraphBase / DataFlowBase_EndOfLoopNode.hxx
1 //  SUPERV GraphBase : contains fondamental classes for Services, Input Ports, Output Ports Links and Nodes.
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : DataFlowBase_EndOfLoopNode.hxx
23 //  Author : Jean Rahuel, CEA
24 //  Module : SUPERV
25
26 #ifndef _DATAFLOWBASE_ENDOFLOOPNODE_HXX
27 #define _DATAFLOWBASE_ENDOFLOOPNODE_HXX
28
29 #include "DataFlowBase_GOTONode.hxx"
30
31 namespace GraphBase {
32
33   class EndOfLoopNode : public GOTONode {
34
35     private:
36     
37     public:
38
39       EndOfLoopNode() ;
40       EndOfLoopNode( CORBA::ORB_ptr ORB ,
41                 SALOME_NamingService* ptrNamingService ,
42                 const char * FuncName ,
43                 const SUPERV::ListOfStrings &  ,
44                 const char *NodeName ,
45                 const SUPERV::KindOfNode akind ,
46                 const SUPERV::SDate NodeFirstCreation ,
47                 const SUPERV::SDate NodeLastModification ,
48                 const char * NodeEditorRelease ,
49                 const char * NodeAuthor ,
50                 const char * NodeComment ,
51                 const bool   GeneratedName ,
52                 const long   X ,
53                 const long   Y ,
54                 int * Graph_prof_debug = NULL ,
55                 ofstream * Graph_fdebug = NULL ) ;
56       virtual ~EndOfLoopNode() ;
57
58   };
59   
60 };
61
62 #endif