blob: d9f48cdad9f41d5cf6e7aab3b80264d013c204cd (
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
|
-- File: PNaming_Naming_1.cdl
-- Created: Fri Aug 15 18:19:05 2008
-- Author: Sergey ZARITCHNY <szy@opencascade.com>
---Copyright: Open CasCade SA 2008
class Naming_1 from PNaming inherits Attribute from PDF
---Purpose:
uses
Name_1 from PNaming
is
Create
returns mutable Naming_1 from PNaming;
SetName(me : mutable ; aName : Name_1 from PNaming);
GetName(me) returns Name_1 from PNaming;
fields
myName : Name_1 from PNaming;
end Naming_1;
|