blob: 1388bff257dbdeea983f1f3c9d0b4e1abfb2cc05 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// File: StepAP203_StartRequest.cxx
// Created: Fri Nov 26 16:26:40 1999
// Author: Andrey BETENEV
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
// Copyright: Matra Datavision 1999
#include <StepAP203_StartRequest.ixx>
//=======================================================================
//function : StepAP203_StartRequest
//purpose :
//=======================================================================
StepAP203_StartRequest::StepAP203_StartRequest ()
{
}
//=======================================================================
//function : Init
//purpose :
//=======================================================================
void StepAP203_StartRequest::Init (const Handle(StepBasic_VersionedActionRequest) &aActionRequestAssignment_AssignedActionRequest,
const Handle(StepAP203_HArray1OfStartRequestItem) &aItems)
{
StepBasic_ActionRequestAssignment::Init(aActionRequestAssignment_AssignedActionRequest);
theItems = aItems;
}
//=======================================================================
//function : Items
//purpose :
//=======================================================================
Handle(StepAP203_HArray1OfStartRequestItem) StepAP203_StartRequest::Items () const
{
return theItems;
}
//=======================================================================
//function : SetItems
//purpose :
//=======================================================================
void StepAP203_StartRequest::SetItems (const Handle(StepAP203_HArray1OfStartRequestItem) &aItems)
{
theItems = aItems;
}
|