INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "This class allows to load a file into a rich edit control. ", "note: Do not use more than one instance of this class ", " at the same time. Nested streams are not supported. ", "WEL: library of reusable components for Eiffel. ", "Based on WEL library for ISE Eiffel, used with permission. "
project: "Windows Eiffel Library"
copyright: "(c) 1986-1997 Interactive Software Engineering Inc. ", "Modifications and extensions: ", "(c) 1997-2001 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
cluster: wel
class WEL_RICH_EDIT_FILE_LOADER
inherit

WEL_RICH_EDIT_STREAM_IN
rename
make as rich_edit_stream_in_make
redefine
finish_action
end
creation

make
feature {NONE}-- Initialization

make (a_file: RAW_FILE)
-- Load `a_file' in the rich edit control.
require
a_file_not_void: a_file /= void
a_file_exists: a_file.exists
a_file_is_open_read: a_file.is_open_read
ensure
file_set: file = a_file
invariant

file_not_void: file /= void
end -- class WEL_RICH_EDIT_FILE_LOADER

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES