first classes of file_upload_module. nothing implemented yet

This commit is contained in:
fmurer
2015-12-29 23:37:29 +01:00
parent 85dfc45f8b
commit f439a791a9
3 changed files with 122 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
note
description: "cms_file_upload application root class"
date: "$Date$"
revision: "$Revision$"
class
CMS_FILE_UPLOAD
inherit
CMS_NODE
redefine
make_empty
end
create
make_empty,
make
feature {NONE} -- Initialisation
make_empty
do
Precursor
end
feature -- Access
content_type: READABLE_STRING_8
feature -- Access: node
summary: detachable READABLE_STRING_32
-- A short summary of the node.
content: detachable READABLE_STRING_32
-- Content of the node.
format: detachable READABLE_STRING_8
-- Format associated with `content' and `summary'.
-- For example: text, mediawiki, html, etc
feature -- Element change: node
set_content (a_content: like content; a_summary: like summary; a_format: like format)
do
content := a_content
summary := a_summary
format := a_format
end
end