Salome HOME
c82a8683c083424b60d3ea8be6aaa76e427aaae0
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_UseCaseIterator_i.cxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : SALOMEDS_UseCaseIterator_i.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDS_UseCaseIterator_i.hxx"
28 #include "SALOMEDS_SObject_i.hxx"
29 #include "SALOMEDS.hxx"
30
31 #include "SALOMEDSImpl_SObject.hxx"
32 #include "utilities.h"
33
34 //============================================================================
35 /*! Function : constructor
36  *  Purpose  :
37  */
38 //============================================================================
39 SALOMEDS_UseCaseIterator_i::SALOMEDS_UseCaseIterator_i(const SALOMEDSImpl_UseCaseIterator& theImpl, 
40                                                        CORBA::ORB_ptr orb)
41 {
42   _orb = CORBA::ORB::_duplicate(orb);
43   _impl = theImpl.GetPersistentCopy();
44 }
45
46 //============================================================================
47 /*! Function : destructor
48  *  Purpose  :
49  */
50 //============================================================================
51 SALOMEDS_UseCaseIterator_i::~SALOMEDS_UseCaseIterator_i()
52 {
53     if(_impl) delete _impl;
54 }
55
56 //============================================================================
57 /*! Function :Init
58  * 
59  */
60 //============================================================================
61 void SALOMEDS_UseCaseIterator_i::Init(CORBA::Boolean allLevels)
62
63   SALOMEDS::Locker lock;
64   if(_impl) _impl->Init(allLevels);
65 }
66
67 //============================================================================
68 /*! Function : More
69  * 
70  */
71 //============================================================================
72 CORBA::Boolean SALOMEDS_UseCaseIterator_i::More()
73 {
74   SALOMEDS::Locker lock;
75   if(!_impl) return false;
76   return _impl->More();
77 }
78
79 //============================================================================
80 /*! Function : Next
81  * 
82  */
83 //============================================================================
84 void SALOMEDS_UseCaseIterator_i::Next()
85 {
86   SALOMEDS::Locker lock;
87   if(_impl) _impl->Next();
88 }
89
90
91 //============================================================================
92 /*! Function :
93  *  Purpose  :
94  */
95 //============================================================================
96 SALOMEDS::SObject_ptr SALOMEDS_UseCaseIterator_i::Value()
97 {
98   SALOMEDS::Locker lock;
99   if(!_impl) return SALOMEDS::SObject::_nil();
100   SALOMEDSImpl_SObject aSO = _impl->Value();
101   SALOMEDS::SObject_var so = SALOMEDS_SObject_i::New (aSO, _orb);
102   return so._retn();
103 }
104