Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/yacs.git] / src / SALOMEDSImpl / SALOMEDSImpl_UseCaseIterator.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_UseCaseIterator.cxx
21 //  Author : Serge RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDSImpl_UseCaseIterator.hxx"
25 #include "SALOMEDSImpl_SObject.hxx"
26 #include "SALOMEDSImpl_Study.hxx"
27
28 using namespace std;
29
30 //============================================================================
31 /*! Function : empty constructor
32  *  Purpose  :
33  */
34 //============================================================================
35 SALOMEDSImpl_UseCaseIterator::SALOMEDSImpl_UseCaseIterator()
36 {
37   _node = NULL;    
38 }
39
40
41 //============================================================================
42 /*! Function : constructor
43  *  Purpose  :
44  */
45 //============================================================================
46 SALOMEDSImpl_UseCaseIterator::SALOMEDSImpl_UseCaseIterator(const DF_Label& theLabel, 
47                                                            const string& theGUID,
48                                                            const bool allLevels)
49 :_guid(theGUID), _levels(allLevels)
50 {
51   if((_node = (SALOMEDSImpl_AttributeTreeNode*)theLabel.FindAttribute(_guid))) {
52     _it.Initialize (_node, _levels);
53   }
54 }
55
56 //============================================================================
57 /*! Function : destructor
58  *  Purpose  :
59  */
60 //============================================================================
61 SALOMEDSImpl_UseCaseIterator::~SALOMEDSImpl_UseCaseIterator()
62 {
63 }
64
65 //============================================================================
66 /*! Function :Init
67  * 
68  */
69 //============================================================================
70 void SALOMEDSImpl_UseCaseIterator::Init(bool allLevels)
71
72   _it.Initialize (_node, allLevels);
73 }
74
75 //============================================================================
76 /*! Function : More
77  * 
78  */
79 //============================================================================
80 bool SALOMEDSImpl_UseCaseIterator::More()
81 {
82   return _it.More();
83 }
84
85 //============================================================================
86 /*! Function : Next
87  * 
88  */
89 //============================================================================
90 void SALOMEDSImpl_UseCaseIterator::Next()
91 {
92   _it.Next();
93 }
94
95
96 //============================================================================
97 /*! Function :
98  *  Purpose  :
99  */
100 //============================================================================
101
102 SALOMEDSImpl_SObject SALOMEDSImpl_UseCaseIterator::Value()
103 {
104   DF_Label L = _it.Value()->Label();
105   return SALOMEDSImpl_Study::SObject(L);
106 }
107
108 //============================================================================
109 /*! Function : GetPersistentCopy
110  * 
111  */
112 //============================================================================
113 SALOMEDSImpl_UseCaseIterator* SALOMEDSImpl_UseCaseIterator::GetPersistentCopy() const
114 {
115   SALOMEDSImpl_UseCaseIterator* itr = new SALOMEDSImpl_UseCaseIterator();
116   itr->_it = _it;
117   itr->_node = _node;
118   itr->_guid = _guid;
119   itr->_levels = _levels;
120   
121   return itr;
122 }