Files
OCCT/src/DataExchange/TKDESTEP/StepElement/StepElement_CurveElementFreedomMember.hxx
T
luzpaz bd53a03b31 Documentation - Fix whitespace and typos (#805)
- Corrected spelling of "transfert" to "transfer" throughout IGES-related files
- Fixed various grammatical and punctuation errors in comments
- Improved whitespace and formatting in multi-line comments
2025-11-05 13:40:06 +00:00

57 lines
2.0 KiB
C++

// Created on: 2002-12-10
// Created by: data exchange team
// Copyright (c) 2002-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#ifndef _StepElement_CurveElementFreedomMember_HeaderFile
#define _StepElement_CurveElementFreedomMember_HeaderFile
#include <Standard.hxx>
#include <Standard_Integer.hxx>
#include <StepData_SelectNamed.hxx>
#include <Standard_CString.hxx>
class StepElement_CurveElementFreedomMember;
DEFINE_STANDARD_HANDLE(StepElement_CurveElementFreedomMember, StepData_SelectNamed)
//! Representation of member for STEP SELECT type CurveElementFreedom
class StepElement_CurveElementFreedomMember : public StepData_SelectNamed
{
public:
//! Empty constructor
Standard_EXPORT StepElement_CurveElementFreedomMember();
//! Returns True if has name
Standard_EXPORT virtual Standard_Boolean HasName() const Standard_OVERRIDE;
//! Returns set name
Standard_EXPORT virtual Standard_CString Name() const Standard_OVERRIDE;
//! Set name
Standard_EXPORT virtual Standard_Boolean SetName(const Standard_CString name) Standard_OVERRIDE;
//! Tells if the name of a SelectMember matches a given one;
Standard_EXPORT virtual Standard_Boolean Matches(const Standard_CString name) const
Standard_OVERRIDE;
DEFINE_STANDARD_RTTIEXT(StepElement_CurveElementFreedomMember, StepData_SelectNamed)
protected:
private:
Standard_Integer mycase;
};
#endif // _StepElement_CurveElementFreedomMember_HeaderFile