1 // Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : SALOMEDSImpl_UseCaseIterator.cxx
24 // Author : Serge RUIN
27 #include "SALOMEDSImpl_UseCaseIterator.hxx"
28 #include "SALOMEDSImpl_SObject.hxx"
29 #include "SALOMEDSImpl_Study.hxx"
31 //============================================================================
32 /*! Function : empty constructor
35 //============================================================================
36 SALOMEDSImpl_UseCaseIterator::SALOMEDSImpl_UseCaseIterator()
42 //============================================================================
43 /*! Function : constructor
46 //============================================================================
47 SALOMEDSImpl_UseCaseIterator::SALOMEDSImpl_UseCaseIterator(const DF_Label& theLabel,
48 const std::string& theGUID,
50 :_guid(theGUID), _levels(allLevels)
52 if((_node = (SALOMEDSImpl_AttributeTreeNode*)theLabel.FindAttribute(_guid))) {
53 _it.Initialize (_node, _levels);
57 //============================================================================
58 /*! Function : destructor
61 //============================================================================
62 SALOMEDSImpl_UseCaseIterator::~SALOMEDSImpl_UseCaseIterator()
66 //============================================================================
70 //============================================================================
71 void SALOMEDSImpl_UseCaseIterator::Init(bool allLevels)
73 _it.Initialize (_node, allLevels);
76 //============================================================================
80 //============================================================================
81 bool SALOMEDSImpl_UseCaseIterator::More()
86 //============================================================================
90 //============================================================================
91 void SALOMEDSImpl_UseCaseIterator::Next()
97 //============================================================================
101 //============================================================================
103 SALOMEDSImpl_SObject SALOMEDSImpl_UseCaseIterator::Value()
105 DF_Label L = _it.Value()->Label();
106 return SALOMEDSImpl_Study::SObject(L);
109 //============================================================================
110 /*! Function : GetPersistentCopy
113 //============================================================================
114 SALOMEDSImpl_UseCaseIterator* SALOMEDSImpl_UseCaseIterator::GetPersistentCopy() const
116 SALOMEDSImpl_UseCaseIterator* itr = new SALOMEDSImpl_UseCaseIterator();
120 itr->_levels = _levels;