1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40:49 +03:00

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

57
src/BRepLib/BRepLib_Command.cdl Executable file
View File

@@ -0,0 +1,57 @@
-- File: BRepLib_Command.cdl
-- Created: Wed Jul 21 19:53:17 1993
-- Author: Remi LEQUETTE
-- <rle@nonox>
---Copyright: Matra Datavision 1993
deferred class Command from BRepLib
---Purpose: Root class for all commands in BRepLib.
--
-- Provides :
--
-- * Managements of the notDone flag.
--
-- * Catching of exceptions (not implemented).
--
-- * Logging (not implemented).
raises
NotDone from StdFail
is
Delete(me:out) is virtual;
---C++: alias "Standard_EXPORT virtual ~BRepLib_Command(){Delete() ; }"
Initialize;
---Purpose: Set done to False.
IsDone(me) returns Boolean
---Level: Public
is static;
Done(me : in out)
---Purpose: Set done to true.
---Level: Public
is static protected;
NotDone(me : in out)
---Purpose: Set done to false.
---Level: Public
is static protected;
Check(me)
---Purpose: Raises NotDone if done is false.
---Level: Public
raises NotDone from StdFail
is static;
fields
myDone : Boolean;
end Command;