File indexing completed on 2026-09-17 09:22:12
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _StepRepr_MaterialPropertyRepresentation_HeaderFile
0017 #define _StepRepr_MaterialPropertyRepresentation_HeaderFile
0018
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 #include <StepRepr_PropertyDefinitionRepresentation.hxx>
0023 class StepRepr_DataEnvironment;
0024 class StepRepr_RepresentedDefinition;
0025 class StepRepr_Representation;
0026
0027
0028 class StepRepr_MaterialPropertyRepresentation : public StepRepr_PropertyDefinitionRepresentation
0029 {
0030
0031 public:
0032
0033 Standard_EXPORT StepRepr_MaterialPropertyRepresentation();
0034
0035
0036 Standard_EXPORT void Init(
0037 const StepRepr_RepresentedDefinition& aPropertyDefinitionRepresentation_Definition,
0038 const occ::handle<StepRepr_Representation>&
0039 aPropertyDefinitionRepresentation_UsedRepresentation,
0040 const occ::handle<StepRepr_DataEnvironment>& aDependentEnvironment);
0041
0042
0043 Standard_EXPORT occ::handle<StepRepr_DataEnvironment> DependentEnvironment() const;
0044
0045
0046 Standard_EXPORT void SetDependentEnvironment(
0047 const occ::handle<StepRepr_DataEnvironment>& DependentEnvironment);
0048
0049 DEFINE_STANDARD_RTTIEXT(StepRepr_MaterialPropertyRepresentation,
0050 StepRepr_PropertyDefinitionRepresentation)
0051
0052 private:
0053 occ::handle<StepRepr_DataEnvironment> theDependentEnvironment;
0054 };
0055
0056 #endif