File indexing completed on 2025-01-18 10:05:12
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _StepRepr_RepresentationReference_HeaderFile_
0018 #define _StepRepr_RepresentationReference_HeaderFile_
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Transient.hxx>
0022
0023 #include <StepRepr_RepresentationContextReference.hxx>
0024
0025 DEFINE_STANDARD_HANDLE(StepRepr_RepresentationReference, Standard_Transient)
0026
0027
0028 class StepRepr_RepresentationReference : public Standard_Transient
0029 {
0030 public :
0031
0032
0033 Standard_EXPORT StepRepr_RepresentationReference();
0034
0035
0036 Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& theId,
0037 const Handle(StepRepr_RepresentationContextReference)& theContextOfItems);
0038
0039
0040 Standard_EXPORT Handle(TCollection_HAsciiString) Id() const;
0041
0042 Standard_EXPORT void SetId (const Handle(TCollection_HAsciiString)& theId);
0043
0044
0045 Standard_EXPORT Handle(StepRepr_RepresentationContextReference) ContextOfItems() const;
0046
0047 Standard_EXPORT void SetContextOfItems (const Handle(StepRepr_RepresentationContextReference)& theContextOfItems);
0048
0049 DEFINE_STANDARD_RTTIEXT(StepRepr_RepresentationReference, Standard_Transient)
0050
0051 private:
0052 Handle(TCollection_HAsciiString) myId;
0053 Handle(StepRepr_RepresentationContextReference) myContextOfItems;
0054
0055 };
0056 #endif