Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-25 09:21:24

0001 // Created on: 2002-12-12
0002 // Created by: data exchange team
0003 // Copyright (c) 2002-2014 OPEN CASCADE SAS
0004 //
0005 // This file is part of Open CASCADE Technology software library.
0006 //
0007 // This library is free software; you can redistribute it and/or modify it under
0008 // the terms of the GNU Lesser General Public License version 2.1 as published
0009 // by the Free Software Foundation, with special exception defined in the file
0010 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0011 // distribution for complete text of the license and disclaimer of any warranty.
0012 //
0013 // Alternatively, this file may be used under the terms of Open CASCADE
0014 // commercial license or contractual agreement.
0015 
0016 #ifndef _StepFEA_FeaModel_HeaderFile
0017 #define _StepFEA_FeaModel_HeaderFile
0018 
0019 #include <Standard.hxx>
0020 
0021 #include <TCollection_AsciiString.hxx>
0022 #include <NCollection_Array1.hxx>
0023 #include <NCollection_HArray1.hxx>
0024 #include <StepRepr_Representation.hxx>
0025 #include <StepRepr_RepresentationItem.hxx>
0026 class TCollection_HAsciiString;
0027 class StepRepr_RepresentationContext;
0028 
0029 //! Representation of STEP entity FeaModel
0030 class StepFEA_FeaModel : public StepRepr_Representation
0031 {
0032 
0033 public:
0034   //! Empty constructor
0035   Standard_EXPORT StepFEA_FeaModel();
0036 
0037   //! Initialize all fields (own and inherited)
0038   Standard_EXPORT void Init(
0039     const occ::handle<TCollection_HAsciiString>& aRepresentation_Name,
0040     const occ::handle<NCollection_HArray1<occ::handle<StepRepr_RepresentationItem>>>&
0041                                                                      aRepresentation_Items,
0042     const occ::handle<StepRepr_RepresentationContext>&               aRepresentation_ContextOfItems,
0043     const occ::handle<TCollection_HAsciiString>&                     aCreatingSoftware,
0044     const occ::handle<NCollection_HArray1<TCollection_AsciiString>>& aIntendedAnalysisCode,
0045     const occ::handle<TCollection_HAsciiString>&                     aDescription,
0046     const occ::handle<TCollection_HAsciiString>&                     aAnalysisType);
0047 
0048   //! Returns field CreatingSoftware
0049   Standard_EXPORT occ::handle<TCollection_HAsciiString> CreatingSoftware() const;
0050 
0051   //! Set field CreatingSoftware
0052   Standard_EXPORT void SetCreatingSoftware(
0053     const occ::handle<TCollection_HAsciiString>& CreatingSoftware);
0054 
0055   //! Returns field IntendedAnalysisCode
0056   Standard_EXPORT occ::handle<NCollection_HArray1<TCollection_AsciiString>> IntendedAnalysisCode()
0057     const;
0058 
0059   //! Set field IntendedAnalysisCode
0060   Standard_EXPORT void SetIntendedAnalysisCode(
0061     const occ::handle<NCollection_HArray1<TCollection_AsciiString>>& IntendedAnalysisCode);
0062 
0063   //! Returns field Description
0064   Standard_EXPORT occ::handle<TCollection_HAsciiString> Description() const;
0065 
0066   //! Set field Description
0067   Standard_EXPORT void SetDescription(const occ::handle<TCollection_HAsciiString>& Description);
0068 
0069   //! Returns field AnalysisType
0070   Standard_EXPORT occ::handle<TCollection_HAsciiString> AnalysisType() const;
0071 
0072   //! Set field AnalysisType
0073   Standard_EXPORT void SetAnalysisType(const occ::handle<TCollection_HAsciiString>& AnalysisType);
0074 
0075   DEFINE_STANDARD_RTTIEXT(StepFEA_FeaModel, StepRepr_Representation)
0076 
0077 private:
0078   occ::handle<TCollection_HAsciiString>                     theCreatingSoftware;
0079   occ::handle<NCollection_HArray1<TCollection_AsciiString>> theIntendedAnalysisCode;
0080   occ::handle<TCollection_HAsciiString>                     theDescription;
0081   occ::handle<TCollection_HAsciiString>                     theAnalysisType;
0082 };
0083 
0084 #endif // _StepFEA_FeaModel_HeaderFile