Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-06-14 08:29:55

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_NodeRepresentation_HeaderFile
0017 #define _StepFEA_NodeRepresentation_HeaderFile
0018 
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021 
0022 #include <StepRepr_Representation.hxx>
0023 #include <StepRepr_HArray1OfRepresentationItem.hxx>
0024 class StepFEA_FeaModel;
0025 class TCollection_HAsciiString;
0026 class StepRepr_RepresentationContext;
0027 
0028 class StepFEA_NodeRepresentation;
0029 DEFINE_STANDARD_HANDLE(StepFEA_NodeRepresentation, StepRepr_Representation)
0030 
0031 //! Representation of STEP entity NodeRepresentation
0032 class StepFEA_NodeRepresentation : public StepRepr_Representation
0033 {
0034 
0035 public:
0036   //! Empty constructor
0037   Standard_EXPORT StepFEA_NodeRepresentation();
0038 
0039   //! Initialize all fields (own and inherited)
0040   Standard_EXPORT void Init(
0041     const Handle(TCollection_HAsciiString)&             aRepresentation_Name,
0042     const Handle(StepRepr_HArray1OfRepresentationItem)& aRepresentation_Items,
0043     const Handle(StepRepr_RepresentationContext)&       aRepresentation_ContextOfItems,
0044     const Handle(StepFEA_FeaModel)&                     aModelRef);
0045 
0046   //! Returns field ModelRef
0047   Standard_EXPORT Handle(StepFEA_FeaModel) ModelRef() const;
0048 
0049   //! Set field ModelRef
0050   Standard_EXPORT void SetModelRef(const Handle(StepFEA_FeaModel)& ModelRef);
0051 
0052   DEFINE_STANDARD_RTTIEXT(StepFEA_NodeRepresentation, StepRepr_Representation)
0053 
0054 protected:
0055 private:
0056   Handle(StepFEA_FeaModel) theModelRef;
0057 };
0058 
0059 #endif // _StepFEA_NodeRepresentation_HeaderFile