Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-21 09:18:39

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_ElementRepresentation_HeaderFile
0017 #define _StepFEA_ElementRepresentation_HeaderFile
0018 
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021 
0022 #include <StepFEA_NodeRepresentation.hxx>
0023 #include <NCollection_Array1.hxx>
0024 #include <NCollection_HArray1.hxx>
0025 #include <StepRepr_Representation.hxx>
0026 #include <StepRepr_RepresentationItem.hxx>
0027 class TCollection_HAsciiString;
0028 class StepRepr_RepresentationContext;
0029 
0030 //! Representation of STEP entity ElementRepresentation
0031 class StepFEA_ElementRepresentation : public StepRepr_Representation
0032 {
0033 
0034 public:
0035   //! Empty constructor
0036   Standard_EXPORT StepFEA_ElementRepresentation();
0037 
0038   //! Initialize all fields (own and inherited)
0039   Standard_EXPORT void Init(
0040     const occ::handle<TCollection_HAsciiString>& aRepresentation_Name,
0041     const occ::handle<NCollection_HArray1<occ::handle<StepRepr_RepresentationItem>>>&
0042                                                        aRepresentation_Items,
0043     const occ::handle<StepRepr_RepresentationContext>& aRepresentation_ContextOfItems,
0044     const occ::handle<NCollection_HArray1<occ::handle<StepFEA_NodeRepresentation>>>& aNodeList);
0045 
0046   //! Returns field NodeList
0047   Standard_EXPORT occ::handle<NCollection_HArray1<occ::handle<StepFEA_NodeRepresentation>>>
0048                   NodeList() const;
0049 
0050   //! Set field NodeList
0051   Standard_EXPORT void SetNodeList(
0052     const occ::handle<NCollection_HArray1<occ::handle<StepFEA_NodeRepresentation>>>& NodeList);
0053 
0054   DEFINE_STANDARD_RTTIEXT(StepFEA_ElementRepresentation, StepRepr_Representation)
0055 
0056 private:
0057   occ::handle<NCollection_HArray1<occ::handle<StepFEA_NodeRepresentation>>> theNodeList;
0058 };
0059 
0060 #endif // _StepFEA_ElementRepresentation_HeaderFile