class EL_BUILDABLE_FROM_FILE

(source code)

Description

Object that is buildable from a file

note
	description: "Object that is buildable from a file"

	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: "2022-12-05 10:01:17 GMT (Monday 5th December 2022)"
	revision: "7"

deferred class
	EL_BUILDABLE_FROM_FILE

feature -- Element change

	build_from_file (a_file_path: FILE_PATH)
		require
			path_exists: a_file_path.exists
		deferred
		end
end