blob: bcbda806b888b499b34597b44ab1e8ea906e367e (
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 <string.h>
//=======================================================================
//function : HashCode
//purpose :
//=======================================================================
inline Standard_Integer MoniTool_MTHasher::HashCode(const Standard_CString Str,
const Standard_Integer Upper)
{
return ::HashCode(Str,Upper);
}
//=======================================================================
//function : IsEqual
//purpose :
//=======================================================================
inline Standard_Boolean MoniTool_MTHasher::IsEqual(const Standard_CString Str1,
const Standard_CString Str2)
{
return ! strcmp(Str1,Str2);
}
|