Salome HOME
Copyrights update
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_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/
19 //
20 //  File   : SALOMEDS_ChildIterator.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25
26 #include "SALOMEDS_ChildIterator.hxx"
27 #include "SALOMEDS_SObject.hxx"
28
29 using namespace std; 
30
31 SALOMEDS_ChildIterator::SALOMEDS_ChildIterator(const Handle(SALOMEDSImpl_ChildIterator)& theIterator)
32 {
33   _isLocal = true;
34   _local_impl = theIterator;
35   _corba_impl = SALOMEDS::ChildIterator::_nil();
36 }
37
38 SALOMEDS_ChildIterator::SALOMEDS_ChildIterator(SALOMEDS::ChildIterator_ptr theIterator)
39 {
40   _isLocal = false;
41   _local_impl = NULL;
42   _corba_impl = SALOMEDS::ChildIterator::_duplicate(theIterator);
43 }
44
45 SALOMEDS_ChildIterator::~SALOMEDS_ChildIterator()
46 {
47   if(!_isLocal) _corba_impl->Destroy(); 
48 }
49
50 void SALOMEDS_ChildIterator::Init()
51 {
52   if(_isLocal) _local_impl->Init();
53   else _corba_impl->Init();
54 }
55
56 void SALOMEDS_ChildIterator::InitEx(bool theAllLevels)
57 {
58   if(_isLocal) _local_impl->InitEx(theAllLevels);
59   else _corba_impl->InitEx(theAllLevels);
60 }
61
62 bool SALOMEDS_ChildIterator::More()
63 {
64   bool ret;
65   if(_isLocal) ret = _local_impl->More();
66   else ret = _corba_impl->More();
67   return ret;
68 }
69
70 void SALOMEDS_ChildIterator::Next() 
71 {
72   if(_isLocal) _local_impl->Next();
73   else _corba_impl->Next();
74 }
75
76 _PTR(SObject) SALOMEDS_ChildIterator::Value()
77 {
78   SALOMEDSClient_SObject* aSO;
79   if(_isLocal) aSO = new SALOMEDS_SObject(_local_impl->Value());
80   else aSO = new SALOMEDS_SObject(_corba_impl->Value());
81   return _PTR(SObject)(aSO);
82 }