* better
[mascara-docs.git] / lang / C / sorting.and.searching.cormen.algo / src / vphn.txt
blobaea238bfd07e12e03676c4b542eeaff4ea64e7a4
1 VERSION 1.0 CLASS
2 BEGIN
3   MultiUse = -1  'True
4   Persistable = 0  'NotPersistable
5   DataBindingBehavior = 0  'vbNone
6   DataSourceBehavior  = 0  'vbNone
7   MTSTransactionMode  = 0  'NotAnMTSObject
8 END
9 Attribute VB_Name = "CHash"
10 Attribute VB_GlobalNameSpace = False
11 Attribute VB_Creatable = True
12 Attribute VB_PredeclaredId = False
13 Attribute VB_Exposed = False
14 Option Explicit
16 ' hash table node, object method
18 ' housekeeping for node
19 Public Nxt As CHash      ' pointer to next node
21 ' user's data
22 Public Key As Variant
23 Public Rec As Variant