OpenCAX/entry/src/main/cpp/include/opencascade/TopoDSToStep_MakeStepEdge.hxx
2026-02-19 19:05:41 +08:00

63 lines
2.2 KiB
C++

// Created on: 1994-11-30
// Created by: Frederic MAUPAS
// Copyright (c) 1994-1999 Matra Datavision
// Copyright (c) 1999-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 _TopoDSToStep_MakeStepEdge_HeaderFile
#define _TopoDSToStep_MakeStepEdge_HeaderFile
#include "Standard.hxx"
#include "Standard_DefineAlloc.hxx"
#include "Standard_Handle.hxx"
#include "TopoDSToStep_MakeEdgeError.hxx"
#include "TopoDSToStep_Root.hxx"
class StepShape_TopologicalRepresentationItem;
class TopoDS_Edge;
class TopoDSToStep_Tool;
class Transfer_FinderProcess;
//! This class implements the mapping between classes
//! Edge from TopoDS and TopologicalRepresentationItem from
//! StepShape.
class TopoDSToStep_MakeStepEdge : public TopoDSToStep_Root
{
public:
DEFINE_STANDARD_ALLOC
Standard_EXPORT TopoDSToStep_MakeStepEdge();
Standard_EXPORT TopoDSToStep_MakeStepEdge(
const TopoDS_Edge& E,
TopoDSToStep_Tool& T,
const Handle(Transfer_FinderProcess)& FP,
const StepData_Factors& theLocalFactors = StepData_Factors());
Standard_EXPORT void Init(const TopoDS_Edge& E,
TopoDSToStep_Tool& T,
const Handle(Transfer_FinderProcess)& FP,
const StepData_Factors& theLocalFactors = StepData_Factors());
Standard_EXPORT const Handle(StepShape_TopologicalRepresentationItem)& Value() const;
Standard_EXPORT TopoDSToStep_MakeEdgeError Error() const;
protected:
private:
Handle(StepShape_TopologicalRepresentationItem) myResult;
TopoDSToStep_MakeEdgeError myError;
};
#endif // _TopoDSToStep_MakeStepEdge_HeaderFile