mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-19 13:40:49 +03:00
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl": - WOK-generated header files from inc and sources from drv are moved to src - CDL files removed - All packages are converted to nocdlpack
82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
// Created on: 1995-03-29
|
|
// Created by: Frederic MAUPAS
|
|
// Copyright (c) 1995-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 _StepToTopoDS_TranslateEdgeLoop_HeaderFile
|
|
#define _StepToTopoDS_TranslateEdgeLoop_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <StepToTopoDS_TranslateEdgeLoopError.hxx>
|
|
#include <TopoDS_Shape.hxx>
|
|
#include <StepToTopoDS_Root.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
class StdFail_NotDone;
|
|
class StepShape_FaceBound;
|
|
class TopoDS_Face;
|
|
class Geom_Surface;
|
|
class StepGeom_Surface;
|
|
class StepToTopoDS_Tool;
|
|
class StepToTopoDS_NMTool;
|
|
class TopoDS_Shape;
|
|
|
|
|
|
|
|
class StepToTopoDS_TranslateEdgeLoop : public StepToTopoDS_Root
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
Standard_EXPORT StepToTopoDS_TranslateEdgeLoop();
|
|
|
|
Standard_EXPORT StepToTopoDS_TranslateEdgeLoop(const Handle(StepShape_FaceBound)& FB, const TopoDS_Face& F, const Handle(Geom_Surface)& S, const Handle(StepGeom_Surface)& SS, const Standard_Boolean ss, StepToTopoDS_Tool& T, StepToTopoDS_NMTool& NMTool);
|
|
|
|
Standard_EXPORT void Init (const Handle(StepShape_FaceBound)& FB, const TopoDS_Face& F, const Handle(Geom_Surface)& S, const Handle(StepGeom_Surface)& SS, const Standard_Boolean ss, StepToTopoDS_Tool& T, StepToTopoDS_NMTool& NMTool);
|
|
|
|
Standard_EXPORT const TopoDS_Shape& Value() const;
|
|
|
|
Standard_EXPORT StepToTopoDS_TranslateEdgeLoopError Error() const;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
StepToTopoDS_TranslateEdgeLoopError myError;
|
|
TopoDS_Shape myResult;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _StepToTopoDS_TranslateEdgeLoop_HeaderFile
|