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:
57
src/BRepLib/BRepLib_Command.cdl
Executable file
57
src/BRepLib/BRepLib_Command.cdl
Executable 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;
|
Reference in New Issue
Block a user