mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-10 17:40:24 +08:00
38 lines
908 B
Plaintext
Executable File
38 lines
908 B
Plaintext
Executable File
-- File: Root.cdl
|
|
-- Created: Tue Sep 29 12:29:04 1992
|
|
-- Author: Remi GILET
|
|
-- <reg@sdsun2>
|
|
---Copyright: Matra Datavision 1992
|
|
|
|
private deferred class Root from GC
|
|
|
|
---Purpose : This class implements the common services for
|
|
-- all classes of gce which report error.
|
|
|
|
uses
|
|
|
|
ErrorType from gce
|
|
|
|
is
|
|
|
|
IsDone(me) returns Boolean
|
|
is static;
|
|
---Purpose: Returns true if the construction is successful.
|
|
---C++: inline
|
|
|
|
Status(me) returns ErrorType from gce
|
|
is static;
|
|
---Purpose:
|
|
-- Returns the status of the construction:
|
|
-- - gce_Done, if the construction is successful, or
|
|
-- - another value of the gce_ErrorType enumeration
|
|
-- indicating why the construction failed.
|
|
---C++: inline
|
|
fields
|
|
|
|
TheError : ErrorType from gce is protected;
|
|
---Purpose: This enumeration lets know why the algorithm has not succeed.
|
|
|
|
end Root;
|
|
|