Salome HOME
Issue 0020472: An error in SALOMEDSImpl_Tool::Exists
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_SComponentIterator.cxx
1 //  Copyright (C) 2007-2008  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.
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 //  File   : SALOMEDSImpl_SComponentIterator.cxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #include "SALOMEDSImpl_SComponentIterator.hxx"
27 #include "SALOMEDSImpl_Study.hxx"
28
29 using namespace std;
30
31 //============================================================================
32 /*! Function : constructor
33  * 
34  */
35 //============================================================================
36
37 SALOMEDSImpl_SComponentIterator::SALOMEDSImpl_SComponentIterator(DF_Document* theDocument)
38 {
39   _lab = theDocument->Main();
40   _it.Init (_lab);
41 }
42
43 //============================================================================
44 /*! Function : Init
45  * 
46  */
47 //============================================================================
48 void SALOMEDSImpl_SComponentIterator::Init()
49
50   _it.Init (_lab);
51 }
52
53 //============================================================================
54 /*! Function : More
55  * 
56  */
57 //============================================================================
58 bool SALOMEDSImpl_SComponentIterator::More()
59 {
60   if (!_it.More())
61     return false;
62   DF_Label L = _it.Value();
63   return SALOMEDSImpl_SComponent::IsA(L);
64 }
65
66 //============================================================================
67 /*! Function : Next
68   */
69 //============================================================================
70 void SALOMEDSImpl_SComponentIterator::Next()
71 {
72   _it.Next();
73 }
74
75
76 //============================================================================
77 /*! Function : Value
78  * 
79  */
80 //============================================================================
81 SALOMEDSImpl_SComponent SALOMEDSImpl_SComponentIterator::Value()
82 {
83   return SALOMEDSImpl_Study::SComponent(_it.Value());
84 }
85
86 //============================================================================
87 /*! Function : GetPersistentCopy
88   */
89 //============================================================================
90 SALOMEDSImpl_SComponentIterator* SALOMEDSImpl_SComponentIterator::GetPersistentCopy() const
91 {
92   SALOMEDSImpl_SComponentIterator* itr = new SALOMEDSImpl_SComponentIterator();
93   itr->_lab = _lab;
94   itr->_it = _it; 
95   
96   return itr;
97 }