class EL_STRING_8_IO_MEDIUM_LINE_SOURCE

(source code)

Client examples: BASE_AUTOTEST_APP

description

IO medium STRING_8 line source

note
	description: "IO medium ${STRING_8} line source"

	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: "2024-09-13 8:19:31 GMT (Friday 13th September 2024)"
	revision: "7"

class
	EL_STRING_8_IO_MEDIUM_LINE_SOURCE

inherit
	EL_FILE_GENERAL_LINE_SOURCE [STRING_8]
		rename
			file as medium
		export
			{NONE} delete_file
		redefine
			Default_file
		end

create
	make_default, make

feature {NONE} -- Implementation

	on_encoding_update
		do
		end

	update_item
		do
			shared_item := medium.last_string
		end

feature {NONE} -- Constants

	Default_file: EL_STRING_8_IO_MEDIUM
		once
			create Result.make (0)
		end

end