File indexing completed on 2026-09-12 09:18:49
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _StepFEA_NodeRepresentation_HeaderFile
0017 #define _StepFEA_NodeRepresentation_HeaderFile
0018
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 #include <StepRepr_Representation.hxx>
0023 #include <StepRepr_RepresentationItem.hxx>
0024 #include <NCollection_Array1.hxx>
0025 #include <NCollection_HArray1.hxx>
0026 class StepFEA_FeaModel;
0027 class TCollection_HAsciiString;
0028 class StepRepr_RepresentationContext;
0029
0030
0031 class StepFEA_NodeRepresentation : public StepRepr_Representation
0032 {
0033
0034 public:
0035
0036 Standard_EXPORT StepFEA_NodeRepresentation();
0037
0038
0039 Standard_EXPORT void Init(
0040 const occ::handle<TCollection_HAsciiString>& aRepresentation_Name,
0041 const occ::handle<NCollection_HArray1<occ::handle<StepRepr_RepresentationItem>>>&
0042 aRepresentation_Items,
0043 const occ::handle<StepRepr_RepresentationContext>& aRepresentation_ContextOfItems,
0044 const occ::handle<StepFEA_FeaModel>& aModelRef);
0045
0046
0047 Standard_EXPORT occ::handle<StepFEA_FeaModel> ModelRef() const;
0048
0049
0050 Standard_EXPORT void SetModelRef(const occ::handle<StepFEA_FeaModel>& ModelRef);
0051
0052 DEFINE_STANDARD_RTTIEXT(StepFEA_NodeRepresentation, StepRepr_Representation)
0053
0054 private:
0055 occ::handle<StepFEA_FeaModel> theModelRef;
0056 };
0057
0058 #endif