src/GraphBase/DataFlowBase_EndOfLoopNode.hxx

Go to the documentation of this file.
00001 //  SUPERV GraphBase : contains fondamental classes for Services, Input Ports, Output Ports Links and Nodes.
00002 //
00003 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
00004 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
00005 // 
00006 //  This library is free software; you can redistribute it and/or 
00007 //  modify it under the terms of the GNU Lesser General Public 
00008 //  License as published by the Free Software Foundation; either 
00009 //  version 2.1 of the License. 
00010 // 
00011 //  This library is distributed in the hope that it will be useful, 
00012 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
00013 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
00014 //  Lesser General Public License for more details. 
00015 // 
00016 //  You should have received a copy of the GNU Lesser General Public 
00017 //  License along with this library; if not, write to the Free Software 
00018 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
00019 // 
00020 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
00021 //
00022 //  File   : DataFlowBase_EndOfLoopNode.hxx
00023 //  Author : Jean Rahuel, CEA
00024 //  Module : SUPERV
00025 
00026 #ifndef _DATAFLOWBASE_ENDOFLOOPNODE_HXX
00027 #define _DATAFLOWBASE_ENDOFLOOPNODE_HXX
00028 
00029 #include "DataFlowBase_GOTONode.hxx"
00030 
00031 namespace GraphBase {
00032 
00033   class EndOfLoopNode : public GOTONode {
00034 
00035     private:
00036     
00037     public:
00038 
00039       EndOfLoopNode() ;
00040       EndOfLoopNode( CORBA::ORB_ptr ORB ,
00041                 SALOME_NamingService* ptrNamingService ,
00042                 const char * FuncName ,
00043                 const SUPERV::ListOfStrings &  ,
00044                 const char *NodeName ,
00045                 const SUPERV::KindOfNode akind ,
00046                 const SUPERV::SDate NodeFirstCreation ,
00047                 const SUPERV::SDate NodeLastModification ,
00048                 const char * NodeEditorRelease ,
00049                 const char * NodeAuthor ,
00050                 const char * NodeComment ,
00051                 const bool   GeneratedName ,
00052                 const long   X ,
00053                 const long   Y ,
00054                 int * Graph_prof_debug = NULL ,
00055                 ofstream * Graph_fdebug = NULL ) ;
00056       virtual ~EndOfLoopNode() ;
00057 
00058   };
00059   
00060 };
00061 
00062 #endif