blob: 1f8daf39472f327dfb5361d2dd8d63e1a59072a7 (
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
|
-- File: IGESSelect_AddGroup.cdl
-- Created: Thu Mar 2 18:03:54 1995
-- Author: Christian CAILLET
-- <cky@pronox>
---Copyright: Matra Datavision 1995
class AddGroup from IGESSelect inherits ModelModifier from IGESSelect
---Purpose : Adds a Group to contain the entities designated by the
-- Selection. If no Selection is given, nothing is done
uses AsciiString from TCollection,
IGESModel, CopyTool, ContextModif
is
Create returns mutable AddGroup;
---Purpose : Creates an AddGroup
Performing (me; ctx : in out ContextModif;
target : mutable IGESModel;
TC : in out CopyTool);
---Purpose : Specific action : Adds a new group
Label (me) returns AsciiString from TCollection;
---Purpose : Returns a text which is
-- "Add Group"
end AddGroup;
|