0024750: Replace instantiations of TCollection generic classes by NCollection templat...
[occt.git] / src / StepElement / StepElement_Volume3dElementDescriptor.cxx
1 // Created on: 2002-12-12
2 // Created by: data exchange team
3 // Copyright (c) 2002-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
17
18 #include <StepElement_Volume3dElementDescriptor.ixx>
19
20 //=======================================================================
21 //function : StepElement_Volume3dElementDescriptor
22 //purpose  : 
23 //=======================================================================
24
25 StepElement_Volume3dElementDescriptor::StepElement_Volume3dElementDescriptor ()
26 {
27 }
28
29 //=======================================================================
30 //function : Init
31 //purpose  : 
32 //=======================================================================
33
34 void StepElement_Volume3dElementDescriptor::Init (const StepElement_ElementOrder aElementDescriptor_TopologyOrder,
35                                                   const Handle(TCollection_HAsciiString) &aElementDescriptor_Description,
36                                                   const Handle(StepElement_HArray1OfVolumeElementPurposeMember) &aPurpose,
37                                                   const StepElement_Volume3dElementShape aShape)
38 {
39   StepElement_ElementDescriptor::Init(aElementDescriptor_TopologyOrder,
40                                       aElementDescriptor_Description);
41
42   thePurpose = aPurpose;
43
44   theShape = aShape;
45 }
46
47 //=======================================================================
48 //function : Purpose
49 //purpose  : 
50 //=======================================================================
51
52 Handle(StepElement_HArray1OfVolumeElementPurposeMember) StepElement_Volume3dElementDescriptor::Purpose () const
53 {
54   return thePurpose;
55 }
56
57 //=======================================================================
58 //function : SetPurpose
59 //purpose  : 
60 //=======================================================================
61
62 void StepElement_Volume3dElementDescriptor::SetPurpose (const Handle(StepElement_HArray1OfVolumeElementPurposeMember) &aPurpose)
63 {
64   thePurpose = aPurpose;
65 }
66
67 //=======================================================================
68 //function : Shape
69 //purpose  : 
70 //=======================================================================
71
72 StepElement_Volume3dElementShape StepElement_Volume3dElementDescriptor::Shape () const
73 {
74   return theShape;
75 }
76
77 //=======================================================================
78 //function : SetShape
79 //purpose  : 
80 //=======================================================================
81
82 void StepElement_Volume3dElementDescriptor::SetShape (const StepElement_Volume3dElementShape aShape)
83 {
84   theShape = aShape;
85 }