Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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 #include "SALOMEDSImpl_ChildIterator.hxx"
25 #include "SALOMEDSImpl_Study.hxx"
26
27 SALOMEDSImpl_ChildIterator::SALOMEDSImpl_ChildIterator(const SALOMEDSImpl_SObject& theSO)
28 {
29   _so  = theSO;
30   _it = DF_ChildIterator(_so.GetLabel());
31 }
32
33 SALOMEDSImpl_ChildIterator::SALOMEDSImpl_ChildIterator(const DF_Label& theLabel)
34 {
35   _so  = SALOMEDSImpl_Study::SObject(theLabel);
36   _it = DF_ChildIterator(theLabel);
37 }
38
39 void SALOMEDSImpl_ChildIterator::Init()
40 {
41   if(_so) _it.Init(_so.GetLabel(), false);
42 }
43
44 void SALOMEDSImpl_ChildIterator::Init(const DF_Label& theLabel)
45 {
46   _it.Init(theLabel, false);
47 }
48
49 void SALOMEDSImpl_ChildIterator::InitEx(bool theAllLevels)
50 {
51   if(_so) _it.Init(_so.GetLabel(), theAllLevels);
52 }
53
54 void SALOMEDSImpl_ChildIterator::InitEx(const DF_Label& theLabel, bool theAllLevels)
55 {
56   _it.Init(theLabel, theAllLevels);
57 }
58
59 bool SALOMEDSImpl_ChildIterator::More()
60 {
61   return _it.More();
62 }
63
64 void SALOMEDSImpl_ChildIterator::Next() 
65 {
66   _it.Next();
67 }
68
69 SALOMEDSImpl_SObject SALOMEDSImpl_ChildIterator::Value()
70 {
71   if(!_so) return SALOMEDSImpl_SObject();
72   return SALOMEDSImpl_Study::SObject(_it.Value());
73 }
74
75 DF_Label SALOMEDSImpl_ChildIterator::Label()
76 {
77   return _it.Value();
78 }
79
80 SALOMEDSImpl_ChildIterator* SALOMEDSImpl_ChildIterator::GetPersistentCopy() const
81 {
82   SALOMEDSImpl_ChildIterator* itr = new SALOMEDSImpl_ChildIterator();
83   itr->_it = _it;
84   itr->_so = _so;
85   return itr;
86 }
87