Salome HOME
e5146f9248b5fb27ecd3775a5bdd2563cdb93cdf
[modules/superv.git] / src / GraphBase / DataFlowBase_EndOfLoopNode.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 //  SUPERV GraphBase : contains fondamental classes for Services, Input Ports, Output Ports Links and Nodes.
23 //  File   : DataFlowBase_EndOfLoopNode.hxx
24 //  Author : Jean Rahuel, CEA
25 //  Module : SUPERV
26 //
27 #ifndef _DATAFLOWBASE_ENDOFLOOPNODE_HXX
28 #define _DATAFLOWBASE_ENDOFLOOPNODE_HXX
29
30 #include "DataFlowBase_GOTONode.hxx"
31
32 namespace GraphBase {
33
34   class EndOfLoopNode : public GOTONode {
35
36     private:
37     
38     public:
39
40       EndOfLoopNode() ;
41       EndOfLoopNode( CORBA::ORB_ptr ORB ,
42                 SALOME_NamingService* ptrNamingService ,
43                 const char * FuncName ,
44                 const SUPERV::ListOfStrings &  ,
45                 const char *NodeName ,
46                 const SUPERV::KindOfNode akind ,
47                 const SUPERV::SDate NodeFirstCreation ,
48                 const SUPERV::SDate NodeLastModification ,
49                 const char * NodeEditorRelease ,
50                 const char * NodeAuthor ,
51                 const char * NodeComment ,
52                 const bool   GeneratedName ,
53                 const long   X ,
54                 const long   Y ,
55                 int * Graph_prof_debug = NULL ,
56                 ofstream * Graph_fdebug = NULL ) ;
57       virtual ~EndOfLoopNode() ;
58
59   };
60   
61 };
62
63 #endif