summaryrefslogtreecommitdiff
path: root/src/StepBasic/StepBasic_ActionRequestSolution.cxx
blob: e1db53fdeec60d31e2d9b1aefdcb0e845d6d07bc (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// File:	StepBasic_ActionRequestSolution.cxx
// Created:	Fri Nov 26 16:26:30 1999 
// Author:	Andrey BETENEV
// Generator:	ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
// Copyright:	Matra Datavision 1999

#include <StepBasic_ActionRequestSolution.ixx>

//=======================================================================
//function : StepBasic_ActionRequestSolution
//purpose  : 
//=======================================================================

StepBasic_ActionRequestSolution::StepBasic_ActionRequestSolution ()
{
}

//=======================================================================
//function : Init
//purpose  : 
//=======================================================================

void StepBasic_ActionRequestSolution::Init (const Handle(StepBasic_ActionMethod) &aMethod,
                                            const Handle(StepBasic_VersionedActionRequest) &aRequest)
{

  theMethod = aMethod;

  theRequest = aRequest;
}

//=======================================================================
//function : Method
//purpose  : 
//=======================================================================

Handle(StepBasic_ActionMethod) StepBasic_ActionRequestSolution::Method () const
{
  return theMethod;
}

//=======================================================================
//function : SetMethod
//purpose  : 
//=======================================================================

void StepBasic_ActionRequestSolution::SetMethod (const Handle(StepBasic_ActionMethod) &aMethod)
{
  theMethod = aMethod;
}

//=======================================================================
//function : Request
//purpose  : 
//=======================================================================

Handle(StepBasic_VersionedActionRequest) StepBasic_ActionRequestSolution::Request () const
{
  return theRequest;
}

//=======================================================================
//function : SetRequest
//purpose  : 
//=======================================================================

void StepBasic_ActionRequestSolution::SetRequest (const Handle(StepBasic_VersionedActionRequest) &aRequest)
{
  theRequest = aRequest;
}