1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0022746: Progress indicator in ShapeHealing

This commit is contained in:
KGV and DBV
2011-11-18 14:51:14 +00:00
committed by bugmaster
parent ffe74e4685
commit b485ee79ca
23 changed files with 515 additions and 324 deletions

View File

@@ -16,10 +16,11 @@ class Context from ShapeProcess inherits TShared from MMgt
uses
Manager from Resource,
AsciiString from TCollection,
Manager from Resource,
AsciiString from TCollection,
HSequenceOfHAsciiString from TColStd,
Messenger from Message
Messenger from Message,
ProgressIndicator from Message
is
@@ -75,6 +76,12 @@ is
Messenger (me) returns Messenger from Message;
---Purpose : Returns Messenger used for outputting messages.
SetProgress (me: mutable; theProgress: ProgressIndicator from Message);
---Purpose : Sets Progress Indicator.
Progress (me) returns ProgressIndicator from Message;
---Purpose : Returns Progress Indicator.
SetTraceLevel (me: mutable; tracelev: Integer);
---Purpose : Sets trace level used for outputting messages
@@ -89,9 +96,10 @@ is
fields
myRC: Manager from Resource;
myScope: HSequenceOfHAsciiString from TColStd;
myRC: Manager from Resource;
myScope: HSequenceOfHAsciiString from TColStd;
myMessenger: Messenger from Message;
myTraceLev : Integer;
myProgress: ProgressIndicator from Message;
myTraceLev: Integer;
end Context;