mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-21 10:55:33 +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
122 lines
4.0 KiB
C++
122 lines
4.0 KiB
C++
// Created on: 1993-07-28
|
|
// Created by: Martine LANGLOIS
|
|
// Copyright (c) 1993-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_HeaderFile
|
|
#define _StepToTopoDS_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <StepToTopoDS_BuilderError.hxx>
|
|
#include <StepToTopoDS_TranslateShellError.hxx>
|
|
#include <StepToTopoDS_TranslateFaceError.hxx>
|
|
#include <StepToTopoDS_TranslateEdgeError.hxx>
|
|
#include <StepToTopoDS_TranslateVertexError.hxx>
|
|
#include <StepToTopoDS_TranslateVertexLoopError.hxx>
|
|
#include <StepToTopoDS_TranslatePolyLoopError.hxx>
|
|
#include <Standard_CString.hxx>
|
|
#include <StepToTopoDS_GeometricToolError.hxx>
|
|
class TCollection_HAsciiString;
|
|
class StepToTopoDS_Root;
|
|
class StepToTopoDS_TranslateShell;
|
|
class StepToTopoDS_TranslateFace;
|
|
class StepToTopoDS_TranslateEdgeLoop;
|
|
class StepToTopoDS_TranslateEdge;
|
|
class StepToTopoDS_TranslateVertex;
|
|
class StepToTopoDS_TranslatePolyLoop;
|
|
class StepToTopoDS_TranslateVertexLoop;
|
|
class StepToTopoDS_TranslateCompositeCurve;
|
|
class StepToTopoDS_TranslateCurveBoundedSurface;
|
|
class StepToTopoDS_Builder;
|
|
class StepToTopoDS_MakeTransformed;
|
|
class StepToTopoDS_GeometricTool;
|
|
class StepToTopoDS_Tool;
|
|
class StepToTopoDS_CartesianPointHasher;
|
|
class StepToTopoDS_PointPair;
|
|
class StepToTopoDS_PointPairHasher;
|
|
class StepToTopoDS_NMTool;
|
|
|
|
|
|
//! This package implements the mapping between AP214
|
|
//! Shape representation and CAS.CAD Shape Representation.
|
|
//! The source schema is Part42 (which is included in AP214)
|
|
class StepToTopoDS
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeBuilderError (const StepToTopoDS_BuilderError Error);
|
|
|
|
Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeShellError (const StepToTopoDS_TranslateShellError Error);
|
|
|
|
Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeFaceError (const StepToTopoDS_TranslateFaceError Error);
|
|
|
|
Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeEdgeError (const StepToTopoDS_TranslateEdgeError Error);
|
|
|
|
Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeVertexError (const StepToTopoDS_TranslateVertexError Error);
|
|
|
|
Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeVertexLoopError (const StepToTopoDS_TranslateVertexLoopError Error);
|
|
|
|
Standard_EXPORT static Handle(TCollection_HAsciiString) DecodePolyLoopError (const StepToTopoDS_TranslatePolyLoopError Error);
|
|
|
|
Standard_EXPORT static Standard_CString DecodeGeometricToolError (const StepToTopoDS_GeometricToolError Error);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
friend class StepToTopoDS_Root;
|
|
friend class StepToTopoDS_TranslateShell;
|
|
friend class StepToTopoDS_TranslateFace;
|
|
friend class StepToTopoDS_TranslateEdgeLoop;
|
|
friend class StepToTopoDS_TranslateEdge;
|
|
friend class StepToTopoDS_TranslateVertex;
|
|
friend class StepToTopoDS_TranslatePolyLoop;
|
|
friend class StepToTopoDS_TranslateVertexLoop;
|
|
friend class StepToTopoDS_TranslateCompositeCurve;
|
|
friend class StepToTopoDS_TranslateCurveBoundedSurface;
|
|
friend class StepToTopoDS_Builder;
|
|
friend class StepToTopoDS_MakeTransformed;
|
|
friend class StepToTopoDS_GeometricTool;
|
|
friend class StepToTopoDS_Tool;
|
|
friend class StepToTopoDS_CartesianPointHasher;
|
|
friend class StepToTopoDS_PointPair;
|
|
friend class StepToTopoDS_PointPairHasher;
|
|
friend class StepToTopoDS_NMTool;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _StepToTopoDS_HeaderFile
|