class EL_SOFTWARE_VERSION_INFO
Downloadable software version info
note
	description: "Downloadable software version info"
	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: "2025-03-18 7:03:32 GMT (Tuesday 18th March 2025)"
	revision: "6"
		
		class
	EL_SOFTWARE_VERSION_INFO
inherit
	EVC_SERIALIZEABLE_AS_XML
create
	make
feature {NONE} -- Initialization
	make (a_software_version: EL_CURRENT_SOFTWARE_VERSION)
		do
			software_version := a_software_version
			make_default
		end
feature {NONE} -- Internal attributes
	software_version: EL_CURRENT_SOFTWARE_VERSION
feature {NONE} -- Evolicity
	getter_function_table: like getter_functions
			--
		do
			create Result.make_assignments (<<
				["version",	agent: NATURAL_32_REF do Result := software_version.compact_version_ref end]
			>>)
		end
	Template: STRING
		once
			Result := "[
				<?xml version = "1.0" encoding = "UTF-8"?>
				<info>
					<version>$version</version>
				</info>
			]"
		end
end