class TEST_STORABLE

(source code)

Description

Test storable

note
	description: "Test storable"

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

	license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
	date: "2023-02-24 14:28:59 GMT (Friday 24th February 2023)"
	revision: "19"

class
	TEST_STORABLE

inherit
	EL_REFLECTIVELY_SETTABLE_STORABLE
		rename
			foreign_naming as eiffel_naming,
			read_version as read_default_version
		end

create
	make_default

feature -- Access

	string: ZSTRING

	string_32: STRING_32

	time: EL_TIME

	uuid: EL_UUID

	integer_list: ARRAYED_LIST [INTEGER]

feature -- Element change

	set_string_values (str: STRING_32)
		do
			string_32 := str
			string := str
		end

feature {NONE} -- Constants

	Field_hash: NATURAL = 3452470618

end