class ADDRESS_TABLE

(source code)

description

Address table

note
	description: "Address table"

	author: "Finnian Reilly"
	copyright: "Copyright (c) 2001-2022 Finnian Reilly"
	contact: "finnian at hex11software dot com"

	license: "All rights reserved"
	date: "2022-02-02 13:07:47 GMT (Wednesday 2nd February 2022)"
	revision: "7"

class
	ADDRESS_TABLE

inherit
	DATA_TABLE [ADDRESS]
		rename
			item as address_item
		undefine
			is_equal, copy
		redefine
			make
		select
			remove, extend, replace
		end

	ADDRESS_LIST
		rename
			make as make_chain_implementation,
			remove as chain_remove,
			extend as chain_extend,
			replace as chain_replace
		undefine
			append
		end

	EL_SOLITARY
		rename
			make as make_solitary
		end

create
	make

feature {NONE} -- Initialization

	make (config: DATABASE_CONFIGURATION)
		do
			make_solitary
			Precursor (config)
		end

end