Salome HOME
This commit was generated by cvs2git to create tag 'TRIPOLI_323'.
[modules/geom.git] / src / NMTDS / NMTDS_PassKey.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:        NMTDS_PassKey.hxx
24 // Created:     
25 // Author:      Peter KURNEV
26 //              <peter@PREFEX>
27 //
28 #ifndef _NMTDS_PassKey_HeaderFile
29 #define _NMTDS_PassKey_HeaderFile
30
31 #include <Standard.hxx>
32 #include <Standard_Macro.hxx>
33 #include <Standard_Integer.hxx>
34 #include <TColStd_IndexedMapOfInteger.hxx>
35 #include <Standard_Boolean.hxx>
36 #include <TColStd_ListOfInteger.hxx>
37
38 //=======================================================================
39 //function : NMTDS_PassKey
40 //purpose  : 
41 //=======================================================================
42 class NMTDS_PassKey  {
43  public:
44   Standard_EXPORT   
45     NMTDS_PassKey();
46   
47   Standard_EXPORT
48     virtual ~NMTDS_PassKey();
49   
50   Standard_EXPORT
51     NMTDS_PassKey(const NMTDS_PassKey& Other);
52
53   Standard_EXPORT 
54     NMTDS_PassKey& operator =(const NMTDS_PassKey& Other);
55   
56   Standard_EXPORT
57     void Clear() ;
58   
59   Standard_EXPORT
60     void SetIds(const Standard_Integer aI1) ;
61   
62   Standard_EXPORT
63     void SetIds(const Standard_Integer aI1,
64                 const Standard_Integer aI2) ;
65   
66   Standard_EXPORT
67     void SetIds(const Standard_Integer aI1,
68                 const Standard_Integer aI2,
69                 const Standard_Integer aI3) ;
70   
71   Standard_EXPORT
72     void SetIds(const Standard_Integer aI1,
73                 const Standard_Integer aI2,
74                 const Standard_Integer aI3,
75                 const Standard_Integer aI4) ;
76   
77   Standard_EXPORT
78     void SetIds(const TColStd_ListOfInteger& aLS) ;
79   
80   Standard_EXPORT
81     Standard_Integer NbIds() const;
82   
83   Standard_EXPORT
84     Standard_Boolean IsEqual(const NMTDS_PassKey& aOther) const;
85   
86   Standard_EXPORT
87     Standard_Integer HashCode(const Standard_Integer Upper) const;
88   
89   Standard_EXPORT
90     Standard_Integer Id(const Standard_Integer aIndex) const;
91   
92   Standard_EXPORT
93     void Ids(Standard_Integer& aI1,Standard_Integer& aI2) const;
94   
95   Standard_EXPORT
96     void Dump(const Standard_Integer aHex = 0) const;
97
98 protected:
99   Standard_Integer myNbIds;
100   Standard_Integer mySum;
101   TColStd_IndexedMapOfInteger myMap;
102 };
103 #endif