Salome HOME
Merging from V3_2_6pre4
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_ChildNodeIterator.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20
21 #ifndef _SALOMEDSImpl_ChildNodeIterator_HeaderFile
22 #define _SALOMEDSImpl_ChildNodeIterator_HeaderFile
23
24 #ifndef _Standard_Integer_HeaderFile
25 #include <Standard_Integer.hxx>
26 #endif
27 #ifndef _Standard_Boolean_HeaderFile
28 #include <Standard_Boolean.hxx>
29 #endif
30
31 #include "SALOMEDSImpl_AttributeTreeNode.hxx"
32
33
34 #ifndef _Standard_HeaderFile
35 #include <Standard.hxx>
36 #endif
37 #ifndef _Standard_Macro_HeaderFile
38 #include <Standard_Macro.hxx>
39 #endif
40
41 class SALOMEDSImpl_ChildNodeIterator  
42 {
43
44 public:
45
46 Standard_EXPORT SALOMEDSImpl_ChildNodeIterator();
47 Standard_EXPORT SALOMEDSImpl_ChildNodeIterator(const Handle(SALOMEDSImpl_AttributeTreeNode)& aTreeNode,
48                                                const Standard_Boolean allLevels = Standard_False);
49 Standard_EXPORT void Initialize(const Handle(SALOMEDSImpl_AttributeTreeNode)& aTreeNode,
50                                 const Standard_Boolean allLevels = Standard_False) ;
51 Standard_EXPORT Standard_Boolean More() const { return !myNode.IsNull(); }
52 Standard_EXPORT void Next() ;
53 Standard_EXPORT void NextBrother() ;
54 Standard_EXPORT Handle_SALOMEDSImpl_AttributeTreeNode Value() const { return myNode; }
55
56 private: 
57
58 Handle_SALOMEDSImpl_AttributeTreeNode myNode;
59 Standard_Integer myFirstLevel;
60
61 };
62
63
64 #endif