blob: dbceb699847a3ef2f970f7eacaa0ae3e0c9d71ae (
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
38
39
40
41
42
43
44
|
-- File: StepData_DefaultGeneral.cdl
-- Created: Fri Mar 26 10:22:38 1993
-- Author: Christian CAILLET
-- <cky@phylox>
---Copyright: Matra Datavision 1993
class DefaultGeneral from StepData inherits GeneralModule from StepData
---Purpose : DefaultGeneral defines a GeneralModule which processes
-- Unknown Entity from StepData only
uses OStream, Transient ,
EntityIterator , CopyTool, Check, ShareTool
is
Create returns mutable DefaultGeneral;
---Purpose : Creates a Default General Module
-- Reconduction because limitation cdl --
FillSharedCase (me; casenum : Integer; ent : Transient;
iter : in out EntityIterator);
---Purpose : Specific filling of the list of Entities shared by an Entity
-- <ent>, which is an UnknownEntity from StepData.
CheckCase (me; casenum : Integer; ent : Transient; shares : ShareTool;
ach : in out Check);
---Purpose : Specific Checking of an Entity <ent>
NewVoid (me; CN : Integer; entto : out mutable Transient)
returns Boolean;
---Purpose : Specific creation of a new void entity
CopyCase (me; casenum : Integer;
entfrom : Transient; entto : mutable Transient;
TC : in out CopyTool);
---Purpose : Specific Copy ("Deep") from <entfrom> to <entto> (same type)
-- by using a CopyTool which provides its working Map.
-- Use method Transferred from TransferControl to work
end DefaultGeneral;
|