Added WSF_REQUEST.read_input_data_into_file (FILE)

This commit is contained in:
2013-05-28 14:42:11 +02:00
parent 430b34df4f
commit eab8df7e10
3 changed files with 84 additions and 3 deletions

View File

@@ -151,14 +151,14 @@ feature -- Element change
set_upload_data (a_data: like upload_data)
require
has_no_upload_data: not has_upload_data
has_no_upload_data: a_data /= Void implies not has_upload_data
do
upload_data := a_data
end
set_upload_filename (a_fn: like upload_filename)
require
has_no_upload_filename: not has_upload_filename
has_no_upload_filename: a_fn /= Void implies not has_upload_filename
do
upload_filename := a_fn
end