Salome HOME
d9c4aa4e7b374cd29a92585dd924226ade2a8be0
[modules/geom.git] / src / NMTTools / NMTTools_CommonBlockAPI.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_CommonBlockAPI.hxx
24 // Created:     Mon Dec 15 11:38:04 2003
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28 #ifndef _NMTTools_CommonBlockAPI_HeaderFile
29 #define _NMTTools_CommonBlockAPI_HeaderFile
30
31 #include <Standard.hxx>
32 #include <Standard_Macro.hxx>
33 #include <Standard_Address.hxx>
34 #include <BOPTools_ListOfPaveBlock.hxx>
35 #include <Standard_Integer.hxx>
36 #include <Standard_Boolean.hxx>
37 #include <NMTTools_CommonBlock.hxx>
38 #include <NMTTools_ListOfCommonBlock.hxx>
39 #include <BOPTools_ListOfPaveBlock.hxx>
40 #include <BOPTools_PaveBlock.hxx>
41
42 //=======================================================================
43 //class    : NMTTools_CommonBlockAPI
44 //purpose  :
45 //=======================================================================
46 class NMTTools_CommonBlockAPI
47 {
48  public:
49   Standard_EXPORT
50     NMTTools_CommonBlockAPI(const NMTTools_ListOfCommonBlock& aList);
51
52 //! Selector <br>
53   Standard_EXPORT
54     const NMTTools_ListOfCommonBlock& List() const;
55
56 //! Returns all PaveBlock-s (from the list) that are <br>
57 //! common for the given edge with  DS-index <anE> <br>
58   Standard_EXPORT
59     const BOPTools_ListOfPaveBlock& CommonPaveBlocks(const Standard_Integer anE) const;
60
61 //! Returns TRUE if given PaveBlock <aPB> is <br>
62 //! common for the Blocks from the list <br>
63   Standard_EXPORT
64     Standard_Boolean IsCommonBlock(const BOPTools_PaveBlock& aPB) const;
65
66   Standard_EXPORT
67     NMTTools_CommonBlock& CommonBlock(const BOPTools_PaveBlock& aPB) const;
68 protected:
69 //private:
70
71 Standard_Address myListOfCommonBlock;
72 BOPTools_ListOfPaveBlock myListOfPaveBlock;
73 };
74 #endif