File indexing completed on 2026-09-15 09:17:11
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _StepFEA_FeaCurveSectionGeometricRelationship_HeaderFile
0017 #define _StepFEA_FeaCurveSectionGeometricRelationship_HeaderFile
0018
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 #include <Standard_Transient.hxx>
0023 class StepElement_CurveElementSectionDefinition;
0024 class StepElement_AnalysisItemWithinRepresentation;
0025
0026
0027 class StepFEA_FeaCurveSectionGeometricRelationship : public Standard_Transient
0028 {
0029
0030 public:
0031
0032 Standard_EXPORT StepFEA_FeaCurveSectionGeometricRelationship();
0033
0034
0035 Standard_EXPORT void Init(
0036 const occ::handle<StepElement_CurveElementSectionDefinition>& aSectionRef,
0037 const occ::handle<StepElement_AnalysisItemWithinRepresentation>& aItem);
0038
0039
0040 Standard_EXPORT occ::handle<StepElement_CurveElementSectionDefinition> SectionRef() const;
0041
0042
0043 Standard_EXPORT void SetSectionRef(
0044 const occ::handle<StepElement_CurveElementSectionDefinition>& SectionRef);
0045
0046
0047 Standard_EXPORT occ::handle<StepElement_AnalysisItemWithinRepresentation> Item() const;
0048
0049
0050 Standard_EXPORT void SetItem(
0051 const occ::handle<StepElement_AnalysisItemWithinRepresentation>& Item);
0052
0053 DEFINE_STANDARD_RTTIEXT(StepFEA_FeaCurveSectionGeometricRelationship, Standard_Transient)
0054
0055 private:
0056 occ::handle<StepElement_CurveElementSectionDefinition> theSectionRef;
0057 occ::handle<StepElement_AnalysisItemWithinRepresentation> theItem;
0058 };
0059
0060 #endif