0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / TNaming / TNaming_IteratorOnShapesSet.hxx
1 // Created on: 1997-05-06
2 // Created by: Yves FRICAUD
3 // Copyright (c) 1997-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #ifndef _TNaming_IteratorOnShapesSet_HeaderFile
18 #define _TNaming_IteratorOnShapesSet_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <TopTools_MapIteratorOfMapOfShape.hxx>
25 #include <Standard_Boolean.hxx>
26 class Standard_NoMoreObject;
27 class Standard_NoSuchObject;
28 class TNaming_ShapesSet;
29 class TopoDS_Shape;
30
31
32
33 class TNaming_IteratorOnShapesSet 
34 {
35 public:
36
37   DEFINE_STANDARD_ALLOC
38
39   
40     TNaming_IteratorOnShapesSet();
41   
42     TNaming_IteratorOnShapesSet(const TNaming_ShapesSet& S);
43   
44   //! Initialize the iteration
45     void Init (const TNaming_ShapesSet& S);
46   
47   //! Returns True if there is a current Item in
48   //! the iteration.
49     Standard_Boolean More() const;
50   
51   //! Move to the next Item
52     void Next();
53   
54   const TopoDS_Shape& Value() const;
55
56
57
58
59 protected:
60
61
62
63
64
65 private:
66
67
68
69   TopTools_MapIteratorOfMapOfShape myIt;
70
71
72 };
73
74
75 #include <TNaming_IteratorOnShapesSet.lxx>
76
77
78
79
80
81 #endif // _TNaming_IteratorOnShapesSet_HeaderFile