0028832: MMgt_TShared can be replaced by Standard_Transient
[occt.git] / src / StepAP242 / StepAP242_IdAttribute.hxx
1 // Created on: 2015-07-10
2 // Created by: Irina KRYLOVA
3 // Copyright (c) 2015 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 #ifndef _StepAP242_IdAttribute_HeaderFile
17 #define _StepAP242_IdAttribute_HeaderFile
18
19 #include <Standard.hxx>
20 #include <Standard_Type.hxx>
21
22 #include <StepAP242_IdAttributeSelect.hxx>
23 #include <Standard_Transient.hxx>
24 class TCollection_HAsciiString;
25 class StepAP242_IdAttributeSelect;
26
27 class StepAP242_IdAttribute;
28 DEFINE_STANDARD_HANDLE(StepAP242_IdAttribute, Standard_Transient)
29 class StepAP242_IdAttribute : public Standard_Transient
30 {
31
32 public:
33   
34   //! Returns a IdAttribute
35   Standard_EXPORT StepAP242_IdAttribute();
36   
37   //! Init all field own and inherited
38   Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& theAttributeValue,
39                              const StepAP242_IdAttributeSelect& theIdentifiedItem);
40   
41   // Set field AttributeValue
42   inline void SetAttributeValue(const Handle(TCollection_HAsciiString)& theAttributeValue)
43   {
44     attributeValue = theAttributeValue;
45   }
46   
47   //! Returns field AttributeValue
48   inline Handle(TCollection_HAsciiString) AttributeValue() const
49   {
50     return attributeValue;
51   }
52   
53   //! Set field IdentifiedItem
54   inline void SetIdentifiedItem(const StepAP242_IdAttributeSelect& theIdentifiedItem)
55   {
56     identifiedItem = theIdentifiedItem;
57   }
58   
59   //! Returns IdentifiedItem
60   inline StepAP242_IdAttributeSelect IdentifiedItem() const
61   {
62     return identifiedItem;
63   }
64
65   DEFINE_STANDARD_RTTIEXT(StepAP242_IdAttribute,Standard_Transient)
66
67 private: 
68   Handle(TCollection_HAsciiString) attributeValue;
69   StepAP242_IdAttributeSelect identifiedItem;
70 };
71 #endif // _StepAP242_IdAttribute_HeaderFile