0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / StepBasic / StepBasic_ContractAssignment.cxx
1 // Created on: 1999-11-26
2 // Created by: Andrey BETENEV
3 // Copyright (c) 1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
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
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.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
18
19 #include <Standard_Type.hxx>
20 #include <StepBasic_Contract.hxx>
21 #include <StepBasic_ContractAssignment.hxx>
22
23 IMPLEMENT_STANDARD_RTTIEXT(StepBasic_ContractAssignment,MMgt_TShared)
24
25 //=======================================================================
26 //function : StepBasic_ContractAssignment
27 //purpose  : 
28 //=======================================================================
29 StepBasic_ContractAssignment::StepBasic_ContractAssignment ()
30 {
31 }
32
33 //=======================================================================
34 //function : Init
35 //purpose  : 
36 //=======================================================================
37
38 void StepBasic_ContractAssignment::Init (const Handle(StepBasic_Contract) &aAssignedContract)
39 {
40
41   theAssignedContract = aAssignedContract;
42 }
43
44 //=======================================================================
45 //function : AssignedContract
46 //purpose  : 
47 //=======================================================================
48
49 Handle(StepBasic_Contract) StepBasic_ContractAssignment::AssignedContract () const
50 {
51   return theAssignedContract;
52 }
53
54 //=======================================================================
55 //function : SetAssignedContract
56 //purpose  : 
57 //=======================================================================
58
59 void StepBasic_ContractAssignment::SetAssignedContract (const Handle(StepBasic_Contract) &aAssignedContract)
60 {
61   theAssignedContract = aAssignedContract;
62 }