Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / NMTTools / NMTTools_CommonBlock.hxx
1 // Copyright (C) 2007-2012  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
23 // File:        NMTTools_CommonBlock.hxx
24 // Created:     Tue Dec  9 12:23:29 2003
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28
29 #ifndef _NMTTools_CommonBlock_HeaderFile
30 #define _NMTTools_CommonBlock_HeaderFile
31
32 #include <Standard.hxx>
33 #include <Standard_Macro.hxx>
34 #include <BOPTools_ListOfPaveBlock.hxx>
35 #include <TColStd_ListOfInteger.hxx>
36 #include <Standard_Integer.hxx>
37 #include <Standard_Boolean.hxx>
38 #include <BOPTools_PaveBlock.hxx>
39
40
41 //=======================================================================
42 //function : NMTTools_CommonBlock
43 //purpose  :
44 //=======================================================================
45 class NMTTools_CommonBlock  {
46  public:
47   Standard_EXPORT
48     NMTTools_CommonBlock();
49
50   Standard_EXPORT
51     void AddPaveBlock(const BOPTools_PaveBlock& aPB) ;
52
53   Standard_EXPORT
54     void AddFace(const Standard_Integer aF) ;
55
56   Standard_EXPORT
57     void AddFaces(const TColStd_ListOfInteger& aLF) ;
58
59   Standard_EXPORT
60     const BOPTools_ListOfPaveBlock& PaveBlocks() const;
61
62   Standard_EXPORT
63     const TColStd_ListOfInteger& Faces() const;
64
65   Standard_EXPORT
66     const BOPTools_PaveBlock& PaveBlock1() const;
67
68   Standard_EXPORT
69     BOPTools_PaveBlock& PaveBlock1(const Standard_Integer anIx) ;
70
71   Standard_EXPORT
72     BOPTools_PaveBlock& PaveBlockOnEdge(const Standard_Integer anIndex) ;
73
74   Standard_EXPORT
75     Standard_Boolean IsPaveBlockOnFace(const Standard_Integer anIndex) const;
76
77   Standard_EXPORT
78     Standard_Boolean IsPaveBlockOnEdge(const Standard_Integer anIndex) const;
79
80   Standard_EXPORT
81     Standard_Boolean IsEqual(const NMTTools_CommonBlock& aCB) const;
82
83   Standard_EXPORT
84     Standard_Boolean Contains(const BOPTools_PaveBlock& aPB) const;
85
86  protected:
87   BOPTools_ListOfPaveBlock myPaveBlocks;
88   TColStd_ListOfInteger myFaces;
89 };
90
91 #endif