Salome HOME
First stable version after merging with V3_2_2
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_ChildIterator.cxx
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 //  File   : SALOMEDSImpl_ChildIterator.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25 #include "SALOMEDSImpl_ChildIterator.hxx"
26 #include "SALOMEDSImpl_Study.hxx"
27
28 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_ChildIterator, MMgt_TShared )
29 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_ChildIterator, MMgt_TShared )
30
31 SALOMEDSImpl_ChildIterator::SALOMEDSImpl_ChildIterator(const Handle(SALOMEDSImpl_SObject)& theSO)
32 {
33   _so  = theSO;
34   _it = TDF_ChildIterator(_so->GetLabel());
35 }
36
37 SALOMEDSImpl_ChildIterator::SALOMEDSImpl_ChildIterator(const TDF_Label& theLabel)
38 {
39   _so  = SALOMEDSImpl_Study::SObject(theLabel);
40   _it = TDF_ChildIterator(theLabel);
41 }
42
43 void SALOMEDSImpl_ChildIterator::Init()
44 {
45   _it.Initialize(_so->GetLabel(), Standard_False);
46 }
47
48 void SALOMEDSImpl_ChildIterator::Init(const TDF_Label& theLabel)
49 {
50   _it.Initialize(theLabel, Standard_False);
51 }
52
53 void SALOMEDSImpl_ChildIterator::InitEx(bool theAllLevels)
54 {
55   _it.Initialize(_so->GetLabel(), theAllLevels);
56 }
57
58 void SALOMEDSImpl_ChildIterator::InitEx(const TDF_Label& theLabel, bool theAllLevels)
59 {
60   _it.Initialize(theLabel, theAllLevels);
61 }
62
63 bool SALOMEDSImpl_ChildIterator::More()
64 {
65   return _it.More();
66 }
67
68 void SALOMEDSImpl_ChildIterator::Next() 
69 {
70   _it.Next();
71 }
72
73 Handle(SALOMEDSImpl_SObject) SALOMEDSImpl_ChildIterator::Value()
74 {
75   return SALOMEDSImpl_Study::SObject(_it.Value());
76 }
77
78 TDF_Label SALOMEDSImpl_ChildIterator::Label()
79 {
80   return _it.Value();
81 }