File indexing completed on 2026-09-14 09:16:02
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _StepElement_ElementDescriptor_HeaderFile
0017 #define _StepElement_ElementDescriptor_HeaderFile
0018
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 #include <StepElement_ElementOrder.hxx>
0023 #include <Standard_Transient.hxx>
0024 class TCollection_HAsciiString;
0025
0026
0027 class StepElement_ElementDescriptor : public Standard_Transient
0028 {
0029
0030 public:
0031
0032 Standard_EXPORT StepElement_ElementDescriptor();
0033
0034
0035 Standard_EXPORT void Init(const StepElement_ElementOrder aTopologyOrder,
0036 const occ::handle<TCollection_HAsciiString>& aDescription);
0037
0038
0039 Standard_EXPORT StepElement_ElementOrder TopologyOrder() const;
0040
0041
0042 Standard_EXPORT void SetTopologyOrder(const StepElement_ElementOrder TopologyOrder);
0043
0044
0045 Standard_EXPORT occ::handle<TCollection_HAsciiString> Description() const;
0046
0047
0048 Standard_EXPORT void SetDescription(const occ::handle<TCollection_HAsciiString>& Description);
0049
0050 DEFINE_STANDARD_RTTIEXT(StepElement_ElementDescriptor, Standard_Transient)
0051
0052 private:
0053 StepElement_ElementOrder theTopologyOrder;
0054 occ::handle<TCollection_HAsciiString> theDescription;
0055 };
0056
0057 #endif