File indexing completed on 2026-09-12 09:18:52
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _StepRepr_CharacterizedRepresentation_HeaderFile
0017 #define _StepRepr_CharacterizedRepresentation_HeaderFile
0018
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 #include <StepRepr_Representation.hxx>
0023 class TCollection_HAsciiString;
0024 class StepRepr_RepresentationContext;
0025
0026 class StepRepr_CharacterizedRepresentation : public StepRepr_Representation
0027 {
0028
0029 public:
0030 Standard_EXPORT StepRepr_CharacterizedRepresentation();
0031
0032
0033 Standard_EXPORT void Init(
0034 const occ::handle<TCollection_HAsciiString>& theName,
0035 const occ::handle<TCollection_HAsciiString>& theDescription,
0036 const occ::handle<NCollection_HArray1<occ::handle<StepRepr_RepresentationItem>>>& theItems,
0037 const occ::handle<StepRepr_RepresentationContext>& theContextOfItems);
0038
0039 void SetDescription(const occ::handle<TCollection_HAsciiString>& theDescription)
0040 {
0041 myDescription = theDescription;
0042 }
0043
0044 occ::handle<TCollection_HAsciiString> Description() const { return myDescription; }
0045
0046 DEFINE_STANDARD_RTTIEXT(StepRepr_CharacterizedRepresentation, StepRepr_Representation)
0047
0048 private:
0049 occ::handle<TCollection_HAsciiString> myDescription;
0050 };
0051 #endif