File indexing completed on 2026-09-24 09:16:12
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _IGESDefs_MacroDef_HeaderFile
0018 #define _IGESDefs_MacroDef_HeaderFile
0019
0020 #include <Standard.hxx>
0021
0022 #include <Standard_Integer.hxx>
0023 #include <TCollection_HAsciiString.hxx>
0024 #include <NCollection_Array1.hxx>
0025 #include <NCollection_HArray1.hxx>
0026 #include <IGESData_IGESEntity.hxx>
0027 class TCollection_HAsciiString;
0028
0029
0030
0031
0032
0033
0034 class IGESDefs_MacroDef : public IGESData_IGESEntity
0035 {
0036
0037 public:
0038 Standard_EXPORT IGESDefs_MacroDef();
0039
0040
0041
0042
0043
0044
0045
0046 Standard_EXPORT void Init(
0047 const occ::handle<TCollection_HAsciiString>& macro,
0048 const int entityTypeID,
0049 const occ::handle<NCollection_HArray1<occ::handle<TCollection_HAsciiString>>>& langStatements,
0050 const occ::handle<TCollection_HAsciiString>& endMacro);
0051
0052
0053 Standard_EXPORT int NbStatements() const;
0054
0055
0056 Standard_EXPORT occ::handle<TCollection_HAsciiString> MACRO() const;
0057
0058
0059 Standard_EXPORT int EntityTypeID() const;
0060
0061 Standard_EXPORT occ::handle<TCollection_HAsciiString> LanguageStatement(const int StatNum) const;
0062
0063
0064 Standard_EXPORT occ::handle<TCollection_HAsciiString> ENDMACRO() const;
0065
0066 DEFINE_STANDARD_RTTIEXT(IGESDefs_MacroDef, IGESData_IGESEntity)
0067
0068 private:
0069 occ::handle<TCollection_HAsciiString> theMACRO;
0070 int theEntityTypeID;
0071 occ::handle<NCollection_HArray1<occ::handle<TCollection_HAsciiString>>> theLangStatements;
0072 occ::handle<TCollection_HAsciiString> theENDMACRO;
0073 };
0074
0075 #endif