Integration of OCCT 6.5.0 from SVN
[occt.git] / src / IGESBasic / IGESBasic_ToolName.cdl
CommitLineData
7fd59977 1-- File: IGESBasic_ToolName.cdl
2-- Created: Thu Oct 14 19:16:58 1993
3-- Author: Christian CAILLET
4-- <cky@bravox>
5---Copyright: Matra Datavision 1993
6
7
8class ToolName from IGESBasic
9
10 ---Purpose : Tool to work on a Name. Called by various Modules
11 -- (ReadWriteModule, GeneralModule, SpecificModule)
12
13uses Name from IGESBasic,
14 IGESReaderData, ParamReader, IGESWriter, EntityIterator,
15 DirChecker, ShareTool, Check, CopyTool, IGESDumper, Messenger from Message
16
17raises DomainError
18
19is
20
21 Create returns ToolName;
22 ---Purpose : Returns a ToolName, ready to work
23
24
25 ReadOwnParams (me; ent : mutable Name;
26 IR : IGESReaderData; PR : in out ParamReader)
27 raises DomainError is static;
28 ---Purpose : Reads own parameters from file. <PR> gives access to them,
29 -- <IR> detains parameter types and values
30
31 WriteOwnParams (me; ent : Name;
32 IW : in out IGESWriter) is static;
33 ---Purpose : Writes own parameters to IGESWriter
34
35
36 OwnShared (me; ent : Name;
37 iter : in out EntityIterator) is static;
38 ---Purpose : Lists the Entities shared by a Name <ent>, from
39 -- its specific (own) parameters
40
41 OwnCorrect (me; ent : mutable Name) returns Boolean is static;
42 ---Purpose : Sets automatic unambiguous Correction on a Name
43 -- (NbPropertyValues forced to 1)
44
45 DirChecker (me; ent : Name) returns DirChecker is static;
46 ---Purpose : Returns specific DirChecker
47
48 OwnCheck (me; ent : Name;
49 shares : ShareTool; ach : in out Check) is static;
50 ---Purpose : Performs Specific Semantic Check
51
52
53 OwnCopy (me; entfrom : Name; entto : mutable Name;
54 TC : in out CopyTool) is static;
55 ---Purpose : Copies Specific Parameters
56
57
58 OwnDump (me; ent : Name;
59 dumper : IGESDumper; S : Messenger from Message; own : Integer)
60 is static;
61 ---Purpose : Dump of Specific Parameters
62
63end ToolName;