indexing

	description:

		"EiffelBase HASH_TABLE_CURSOR class interface"

	library:    "Gobo Eiffel Structure Library"
	author:     "Eric Bezault <ericb@gobosoft.com>"
	copyright:  "Copyright (c) 1999, Eric Bezault and others"
	license:    "Eiffel Forum Freeware License v1 (see forum.txt)"
	date:       "$Date: 1999/09/01 12:25:41 $"
	revision:   "$Revision: 1.1 $"

class HASH_TABLE_CURSOR

inherit

	CURSOR

creation

	make

feature {NONE} -- Initialization

	make (p: INTEGER) is
			-- Set `position' to `p'.
		do
			position := p
		ensure
			position_set: position = p
		end

feature -- Access

	position: INTEGER
			-- Internal position in hash table

end -- class HASH_TABLE_CURSOR
