Files
EWF/test/getest/author.e
2010-03-08 23:46:59 +00:00

24 lines
344 B
Plaintext

class AUTHOR
create
make
feature {NONE} -- Initialization
make (a_name: UC_STRING) is
do
set_name (a_name)
end
feature -- Access
name: UC_STRING
feature -- Status setting
set_name (a_name: UC_STRING) is
do
name := a_name
end
end -- class AUTHOR