Files
EWF/examples/widgetapp/demo_progresssource.e
Severin Münger 45e3a6d7cc Small changes
2013-09-15 13:25:01 +02:00

37 lines
405 B
Plaintext

note
description: "Summary description for {DEMO_PROGRESSSOURCE}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
DEMO_PROGRESSSOURCE
inherit
WSF_PROGRESSSOURCE
create
make
feature {NONE} -- Initialization
make
do
prog := 20
end
feature -- Implementation
progress: INTEGER
do
if prog < 100 then
prog := prog + 1
end
Result := prog
end
prog: INTEGER
end