blob: 8b3619121352f1fa842d9fafc50511d19c8f3516 (
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
|
#include <Interface_MapAsciiStringHasher.ixx>
#include <TCollection_AsciiString.hxx>
//=======================================================================
//function : HashCode
//purpose :
//=======================================================================
Standard_Integer Interface_MapAsciiStringHasher::HashCode(const TCollection_AsciiString& K,
const Standard_Integer Upper)
{
return ::HashCode(K.ToCString(),Upper);
}
//=======================================================================
//function : IsEqual
//purpose :
//=======================================================================
Standard_Boolean Interface_MapAsciiStringHasher::IsEqual(const TCollection_AsciiString& K1,
const TCollection_AsciiString& K2)
{
if(!K1.Length() || !K2.Length()) return Standard_False;
return K1.IsEqual(K2);
}
|