Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

47
src/Draw/Draw_Chronometer.cdl Executable file
View File

@@ -0,0 +1,47 @@
-- File: Draw_Chronometer.cdl
-- Created: Mon Aug 16 11:36:24 1993
-- Author: Bruno DUMORTIER
-- <dub@phylox>
---Copyright: Matra Datavision 1993
class Chronometer from Draw inherits Drawable3D from Draw
---Purpose: Class to store chronometer variables.
uses
Timer from OSD,
Display from Draw,
Interpretor from Draw
is
Create returns mutable Chronometer from Draw;
Timer(me : mutable) returns Timer from OSD
---C++: return &
is static;
DrawOn(me; dis : in out Display);
---Purpose: Does nothhing,
Copy(me) returns mutable Drawable3D from Draw
---Purpose: For variable copy.
is redefined;
Dump(me; S : in out OStream)
---Purpose: For variable dump.
is redefined;
Whatis(me; I : in out Interpretor from Draw)
---Purpose: For variable whatis command.
is redefined;
fields
myTimer : Timer from OSD;
end Chronometer;