0026371: Implementation of new entities for GD&T
[occt.git] / src / StepRepr / StepRepr_DataEnvironment.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 <Standard_Type.hxx>
19 #include <StepRepr_DataEnvironment.hxx>
20 #include <TCollection_HAsciiString.hxx>
21
22 //=======================================================================
23 //function : StepRepr_DataEnvironment
24 //purpose  : 
25 //=======================================================================
26 StepRepr_DataEnvironment::StepRepr_DataEnvironment ()
27 {
28 }
29
30 //=======================================================================
31 //function : Init
32 //purpose  : 
33 //=======================================================================
34
35 void StepRepr_DataEnvironment::Init (const Handle(TCollection_HAsciiString) &aName,
36                                      const Handle(TCollection_HAsciiString) &aDescription,
37                                      const Handle(StepRepr_HArray1OfPropertyDefinitionRepresentation) &aElements)
38 {
39
40   theName = aName;
41
42   theDescription = aDescription;
43
44   theElements = aElements;
45 }
46
47 //=======================================================================
48 //function : Name
49 //purpose  : 
50 //=======================================================================
51
52 Handle(TCollection_HAsciiString) StepRepr_DataEnvironment::Name () const
53 {
54   return theName;
55 }
56
57 //=======================================================================
58 //function : SetName
59 //purpose  : 
60 //=======================================================================
61
62 void StepRepr_DataEnvironment::SetName (const Handle(TCollection_HAsciiString) &aName)
63 {
64   theName = aName;
65 }
66
67 //=======================================================================
68 //function : Description
69 //purpose  : 
70 //=======================================================================
71
72 Handle(TCollection_HAsciiString) StepRepr_DataEnvironment::Description () const
73 {
74   return theDescription;
75 }
76
77 //=======================================================================
78 //function : SetDescription
79 //purpose  : 
80 //=======================================================================
81
82 void StepRepr_DataEnvironment::SetDescription (const Handle(TCollection_HAsciiString) &aDescription)
83 {
84   theDescription = aDescription;
85 }
86
87 //=======================================================================
88 //function : Elements
89 //purpose  : 
90 //=======================================================================
91
92 Handle(StepRepr_HArray1OfPropertyDefinitionRepresentation) StepRepr_DataEnvironment::Elements () const
93 {
94   return theElements;
95 }
96
97 //=======================================================================
98 //function : SetElements
99 //purpose  : 
100 //=======================================================================
101
102 void StepRepr_DataEnvironment::SetElements (const Handle(StepRepr_HArray1OfPropertyDefinitionRepresentation) &aElements)
103 {
104   theElements = aElements;
105 }