blob: 397ffe601a7df76209b66c0279530911ca3ef438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
-- 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;
|