28a73c1f |
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 <MMgt_TShared.hxx> |
24 | class TCollection_HAsciiString; |
25 | class StepAP242_IdAttributeSelect; |
26 | |
27 | class StepAP242_IdAttribute; |
28 | DEFINE_STANDARD_HANDLE(StepAP242_IdAttribute, MMgt_TShared) |
29 | class StepAP242_IdAttribute : public MMgt_TShared |
30 | { |
31 | |
32 | public: |
33 | |
34 | //! Returns a IdAttribute |
35 | Standard_EXPORT StepAP242_IdAttribute(); |
36 | |
37 | //! Init all field own and inherited |
18f7c9a5 |
38 | Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& theAttributeValue, |
39 | const StepAP242_IdAttributeSelect& theIdentifiedItem); |
28a73c1f |
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 | |
92efcf78 |
65 | DEFINE_STANDARD_RTTIEXT(StepAP242_IdAttribute,MMgt_TShared) |
28a73c1f |
66 | |
67 | private: |
68 | Handle(TCollection_HAsciiString) attributeValue; |
69 | StepAP242_IdAttributeSelect identifiedItem; |
70 | }; |
71 | #endif // _StepAP242_IdAttribute_HeaderFile |