0023024: Update headers of OCCT files
[occt.git] / src / IGESGraph / IGESGraph_ToolPick.cdl
CommitLineData
b311480e 1-- Created on: 1993-10-14
2-- Created by: Christian CAILLET
3-- Copyright (c) 1993-1999 Matra Datavision
4-- Copyright (c) 1999-2012 OPEN CASCADE SAS
5--
6-- The content of this file is subject to the Open CASCADE Technology Public
7-- License Version 6.5 (the "License"). You may not use the content of this file
8-- except in compliance with the License. Please obtain a copy of the License
9-- at http://www.opencascade.org and read it completely before using this file.
10--
11-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13--
14-- The Original Code and all software distributed under the License is
15-- distributed on an "AS IS" basis, without warranty of any kind, and the
16-- Initial Developer hereby disclaims all such warranties, including without
17-- limitation, any warranties of merchantability, fitness for a particular
18-- purpose or non-infringement. Please see the License for the specific terms
19-- and conditions governing the rights and limitations under the License.
20
7fd59977 21
22
23class ToolPick from IGESGraph
24
25 ---Purpose : Tool to work on a Pick. Called by various Modules
26 -- (ReadWriteModule, GeneralModule, SpecificModule)
27
28uses Pick from IGESGraph,
29 IGESReaderData, ParamReader, IGESWriter, EntityIterator,
30 DirChecker, ShareTool, Check, CopyTool, IGESDumper, Messenger from Message
31
32raises DomainError
33
34is
35
36 Create returns ToolPick;
37 ---Purpose : Returns a ToolPick, ready to work
38
39
40 ReadOwnParams (me; ent : mutable Pick;
41 IR : IGESReaderData; PR : in out ParamReader)
42 raises DomainError is static;
43 ---Purpose : Reads own parameters from file. <PR> gives access to them,
44 -- <IR> detains parameter types and values
45
46 WriteOwnParams (me; ent : Pick;
47 IW : in out IGESWriter) is static;
48 ---Purpose : Writes own parameters to IGESWriter
49
50
51 OwnShared (me; ent : Pick;
52 iter : in out EntityIterator) is static;
53 ---Purpose : Lists the Entities shared by a Pick <ent>, from
54 -- its specific (own) parameters
55
56 OwnCorrect (me; ent : mutable Pick) returns Boolean is static;
57 ---Purpose : Sets automatic unambiguous Correction on a Pick
58 -- (NbPropertyValues forced to 1)
59
60 DirChecker (me; ent : Pick) returns DirChecker is static;
61 ---Purpose : Returns specific DirChecker
62
63 OwnCheck (me; ent : Pick;
64 shares : ShareTool; ach : in out Check) is static;
65 ---Purpose : Performs Specific Semantic Check
66
67
68 OwnCopy (me; entfrom : Pick; entto : mutable Pick;
69 TC : in out CopyTool) is static;
70 ---Purpose : Copies Specific Parameters
71
72
73 OwnDump (me; ent : Pick;
74 dumper : IGESDumper; S : Messenger from Message; own : Integer)
75 is static;
76 ---Purpose : Dump of Specific Parameters
77
78end ToolPick;