Small changes

This commit is contained in:
Severin Münger
2013-09-15 13:25:01 +02:00
parent be05edac7d
commit 45e3a6d7cc
2 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
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