blob: 9d8f1e2f564363f059a0c1c3396f79b6b1a76419 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-- File: StepToTopoDS_PointPairHasher.cdl
-- Created: Fri Aug 6 12:42:06 1993
-- Author: Martine LANGLOIS
-- <mla@mastox>
---Copyright: Matra Datavision 1993
class PointPairHasher from StepToTopoDS
uses
PointPair from StepToTopoDS
is
HashCode(myclass; K : PointPair from StepToTopoDS; Upper : Integer)
returns Integer;
---Purpose: Returns a HasCode value for the PointPair
IsEqual(myclass; K1, K2 : PointPair from StepToTopoDS) returns Boolean;
---Purpose: Returns True when the two PointPair are the same
end PointPairHasher;
|