File indexing completed on 2026-09-18 09:21:52
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef _StepBasic_DocumentFile_HeaderFile
0017 #define _StepBasic_DocumentFile_HeaderFile
0018
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021
0022 #include <StepBasic_Document.hxx>
0023 class StepBasic_CharacterizedObject;
0024 class TCollection_HAsciiString;
0025 class StepBasic_DocumentType;
0026
0027
0028 class StepBasic_DocumentFile : public StepBasic_Document
0029 {
0030
0031 public:
0032
0033 Standard_EXPORT StepBasic_DocumentFile();
0034
0035
0036 Standard_EXPORT void Init(
0037 const occ::handle<TCollection_HAsciiString>& aDocument_Id,
0038 const occ::handle<TCollection_HAsciiString>& aDocument_Name,
0039 const bool hasDocument_Description,
0040 const occ::handle<TCollection_HAsciiString>& aDocument_Description,
0041 const occ::handle<StepBasic_DocumentType>& aDocument_Kind,
0042 const occ::handle<TCollection_HAsciiString>& aCharacterizedObject_Name,
0043 const bool hasCharacterizedObject_Description,
0044 const occ::handle<TCollection_HAsciiString>& aCharacterizedObject_Description);
0045
0046
0047 Standard_EXPORT occ::handle<StepBasic_CharacterizedObject> CharacterizedObject() const;
0048
0049
0050 Standard_EXPORT void SetCharacterizedObject(
0051 const occ::handle<StepBasic_CharacterizedObject>& CharacterizedObject);
0052
0053 DEFINE_STANDARD_RTTIEXT(StepBasic_DocumentFile, StepBasic_Document)
0054
0055 private:
0056 occ::handle<StepBasic_CharacterizedObject> theCharacterizedObject;
0057 };
0058
0059 #endif