class EL_STRING_32_READER_WRITER
Adapter interface to read a STRING_32 item from EL_READABLE and write an item to EL_WRITABLE
note
description: "[
Adapter interface to read a ${STRING_32} item from ${EL_READABLE}
and write an item to ${EL_WRITABLE}
]"
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-01-20 19:18:24 GMT (Saturday 20th January 2024)"
revision: "8"
class
EL_STRING_32_READER_WRITER
inherit
EL_STRING_GENERAL_READER_WRITER [STRING_32]
undefine
bit_count
end
EL_STRING_32_BIT_COUNTABLE [STRING_32]
feature -- Basic operations
read_item (reader: EL_READABLE): STRING_32
do
Result := reader.read_string_32
end
write (item: STRING_32; writer: EL_WRITABLE)
do
writer.write_string_32 (item)
end
set (item: STRING_32; reader: EL_READABLE)
do
end
end