blob: d15a3d18ddf0560938e615f7f4be0230dce8fb24 (
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
31
32
33
|
-- File: StepBasic_ProductConceptContext.cdl
-- Created: Fri Nov 26 16:26:39 1999
-- Author: Andrey BETENEV
-- Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
-- Copyright: Matra Datavision 1999
class ProductConceptContext from StepBasic
inherits ApplicationContextElement from StepBasic
---Purpose: Representation of STEP entity ProductConceptContext
uses
HAsciiString from TCollection,
ApplicationContext from StepBasic
is
Create returns ProductConceptContext from StepBasic;
---Purpose: Empty constructor
Init (me: mutable; aApplicationContextElement_Name: HAsciiString from TCollection;
aApplicationContextElement_FrameOfReference: ApplicationContext from StepBasic;
aMarketSegmentType: HAsciiString from TCollection);
---Purpose: Initialize all fields (own and inherited)
MarketSegmentType (me) returns HAsciiString from TCollection;
---Purpose: Returns field MarketSegmentType
SetMarketSegmentType (me: mutable; MarketSegmentType: HAsciiString from TCollection);
---Purpose: Set field MarketSegmentType
fields
theMarketSegmentType: HAsciiString from TCollection;
end ProductConceptContext;
|