INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "This class allows to save in a file the contents of 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 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_SAVER
inherit

WEL_RICH_EDIT_STREAM_OUT
rename
make as rich_edit_stream_out_make
redefine
finish_action
end
creation

make
feature {NONE}-- Initialization

make (a_file: RAW_FILE)
-- Save the contents of the rich edit control
-- in `a_file'.
require
a_file_not_void: a_file /= void
a_file_exists: a_file.exists
a_file_is_open_write: a_file.is_open_write
ensure
file_set: file = a_file
invariant

file_not_void: file /= void
end -- class WEL_RICH_EDIT_FILE_SAVER

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES