blob: 14b48c7b6351a54ea87d34d3c83800fe55bd8dbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// File: TopTools_ShapeMapHasher.lxx
// Created: Thu Jan 14 16:01:40 1993
// Author: Remi LEQUETTE
// <rle@phylox>
#include <TopoDS_Shape.hxx>
//=======================================================================
//function : HashCode
//purpose :
//=======================================================================
inline Standard_Integer TopTools_ShapeMapHasher::HashCode
(const TopoDS_Shape& S, const Standard_Integer Upper)
{
return S.HashCode(Upper);
}
//=======================================================================
//function : IsEqual
//purpose :
//=======================================================================
inline Standard_Boolean TopTools_ShapeMapHasher::IsEqual
(const TopoDS_Shape& S1, const TopoDS_Shape& S2)
{
return S1.IsSame(S2);
}
|