This site contains older material on Eiffel. For the main Eiffel page, see http://www.eiffel.com.

EiffelBase class
(HTML page generated by ISE Eiffel 4.2)

Eiffel Class
indexing
	description: "Cursors for linked trees";
	status: "See notice at end of class";
	names: linked_tree_cursor, cursor;
	contents: generic;
	date: "$Date: 2007-03-30 19:10:11 +0000 (Fri, 30 Mar 2007) $";
	revision: "$Revision: 95354 $"

class LINKED_TREE_CURSOR [G]

inherit
	RECURSIVE_TREE_CURSOR [G]
		export
			{LINKED_CURSOR_TREE} make
		redefine
			active
		end

feature {LINKED_CURSOR_TREE} -- Access

	active: LINKED_TREE [G];
			-- Current node

end -- class LINKED_TREE_CURSOR