0024830: Remove redundant keyword 'mutable' in CDL declarations
[occt.git] / src / IGESAppli / IGESAppli_LevelFunction.cdl
CommitLineData
b311480e 1-- Created on: 1993-01-11
2-- Created by: CKY / Contract Toubro-Larsen ( Arun MENON )
3-- Copyright (c) 1993-1999 Matra Datavision
973c2be1 4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
7fd59977 5--
973c2be1 6-- This file is part of Open CASCADE Technology software library.
7fd59977 7--
d5f74e42 8-- This library is free software; you can redistribute it and/or modify it under
9-- the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10-- by the Free Software Foundation, with special exception defined in the file
11-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12-- distribution for complete text of the license and disclaimer of any warranty.
7fd59977 13--
973c2be1 14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
7fd59977 16
17class LevelFunction from IGESAppli inherits IGESEntity
18
19 ---Purpose: defines LevelFunction, Type <406> Form <3>
20 -- in package IGESAppli
21 -- Used to transfer the meaning or intended use of a level
22 -- in the sending system
23
24uses
25
26 HAsciiString from TCollection
27
28is
29
6e33d3ce 30 Create returns LevelFunction;
7fd59977 31
32 -- Specific Methods pertaining to the class
33
34 Init (me : mutable;
35 nbPropVal : Integer;
36 aCode : Integer;
37 aFuncDescrip : HAsciiString);
38 ---Purpose : This method is used to set the fields of the class
39 -- LevelFunction
40 -- - nbPropVal : Number of Properties, always = 2
41 -- - aCode : Function Description code
42 -- default = 0
43 -- - aFuncDescrip : Function Description
44 -- default = null string
45
46 NbPropertyValues (me) returns Integer;
47 ---Purpose : is always 2
48
49 FuncDescriptionCode (me) returns Integer;
50 ---Purpose : returns the function description code . Default = 0
51
52 FuncDescription (me) returns HAsciiString from TCollection;
53 ---Purpose : returns the function description
54 -- Default = null string
55
56fields
57
58--
59-- Class : IGESAppli_LevelFunction
60--
61-- Purpose : Declaration of variables specific to the definition
62-- of the Class LevelFunction.
63--
64-- Reminder : A LevelFunction instance is defined by :
65-- - Function Description code, default = 0
66-- - Function Description, default = null string
67
68 theNbPropertyValues : Integer;
69 theFuncDescripCode : Integer;
70 theFuncDescrip : HAsciiString;
71
72end LevelFunction;