Salome HOME
73ab05039fdf4bda89251876f76803c626856731
[modules/yacs.git] / src / SALOMEDS / SALOMEDS_SComponentIterator.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_SComponentIterator.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDS_SComponentIterator.hxx"
25 #include "SALOMEDSImpl_SComponent.hxx"
26 #include "SALOMEDS_SComponent.hxx"
27
28 SALOMEDS_SComponentIterator::SALOMEDS_SComponentIterator(const SALOMEDSImpl_SComponentIterator& theIterator)
29 :_local_impl(theIterator)
30 {
31   _isLocal = true;
32   _corba_impl = SALOMEDS::SComponentIterator::_nil();
33 }
34
35 SALOMEDS_SComponentIterator::SALOMEDS_SComponentIterator(SALOMEDS::SComponentIterator_ptr theIterator)
36 {
37   _isLocal = false;
38   _corba_impl = SALOMEDS::SComponentIterator::_duplicate(theIterator);
39 }
40
41 SALOMEDS_SComponentIterator::~SALOMEDS_SComponentIterator()
42 {
43   if(!_isLocal) _corba_impl->Destroy(); 
44 }
45
46 void SALOMEDS_SComponentIterator::Init()
47 {
48   if(_isLocal) _local_impl.Init();
49   else _corba_impl->Init();
50 }
51
52 bool SALOMEDS_SComponentIterator::More()
53 {
54   bool ret;
55   if(_isLocal) ret = _local_impl.More();
56   else ret = _corba_impl->More();
57   return ret;
58 }
59  
60 void SALOMEDS_SComponentIterator::Next()
61 {
62   if(_isLocal) _local_impl.Next();
63   else _corba_impl->Next();
64 }
65  
66 _PTR(SComponent) SALOMEDS_SComponentIterator::Value()  
67 {
68   SALOMEDSClient_SComponent* aSCO = NULL;
69   if(_isLocal) aSCO = new SALOMEDS_SComponent(_local_impl.Value());
70   else aSCO = new SALOMEDS_SComponent(_corba_impl->Value());
71   return _PTR(SComponent)(aSCO);
72 }