Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-14 09:16:02

0001 // Created on: 2002-12-10
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 _StepElement_CurveElementPurpose_HeaderFile
0017 #define _StepElement_CurveElementPurpose_HeaderFile
0018 
0019 #include <Standard.hxx>
0020 #include <Standard_DefineAlloc.hxx>
0021 #include <Standard_Handle.hxx>
0022 
0023 #include <StepData_SelectType.hxx>
0024 #include <Standard_Integer.hxx>
0025 #include <StepElement_EnumeratedCurveElementPurpose.hxx>
0026 class Standard_Transient;
0027 class StepData_SelectMember;
0028 class TCollection_HAsciiString;
0029 
0030 //! Representation of STEP SELECT type CurveElementPurpose
0031 class StepElement_CurveElementPurpose : public StepData_SelectType
0032 {
0033 public:
0034   DEFINE_STANDARD_ALLOC
0035 
0036   //! Empty constructor
0037   Standard_EXPORT StepElement_CurveElementPurpose();
0038 
0039   //! Recognizes a kind of CurveElementPurpose select type
0040   //! return 0
0041   Standard_EXPORT int CaseNum(const occ::handle<Standard_Transient>& ent) const override;
0042 
0043   //! Recognizes a items of select member CurveElementPurposeMember
0044   //! 1 -> EnumeratedCurveElementPurpose
0045   //! 2 -> ApplicationDefinedElementPurpose
0046   //! 0 else
0047   Standard_EXPORT int CaseMem(const occ::handle<StepData_SelectMember>& ent) const override;
0048 
0049   //! Returns a new select member the type CurveElementPurposeMember
0050   Standard_EXPORT occ::handle<StepData_SelectMember> NewMember() const override;
0051 
0052   //! Set Value for EnumeratedCurveElementPurpose
0053   Standard_EXPORT void SetEnumeratedCurveElementPurpose(
0054     const StepElement_EnumeratedCurveElementPurpose aVal);
0055 
0056   //! Returns Value as EnumeratedCurveElementPurpose (or Null if another type)
0057   Standard_EXPORT StepElement_EnumeratedCurveElementPurpose EnumeratedCurveElementPurpose() const;
0058 
0059   //! Set Value for ApplicationDefinedElementPurpose
0060   Standard_EXPORT void SetApplicationDefinedElementPurpose(
0061     const occ::handle<TCollection_HAsciiString>& aVal);
0062 
0063   //! Returns Value as ApplicationDefinedElementPurpose (or Null if another type)
0064   Standard_EXPORT occ::handle<TCollection_HAsciiString> ApplicationDefinedElementPurpose() const;
0065 };
0066 
0067 #endif // _StepElement_CurveElementPurpose_HeaderFile