0031035: Coding - uninitialized class fields reported by Visual Studio Code Analysis
[occt.git] / src / TopoDSToStep / TopoDSToStep.hxx
CommitLineData
42cf5bc1 1// Created on: 1994-11-25
2// Created by: Frederic MAUPAS
3// Copyright (c) 1994-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _TopoDSToStep_HeaderFile
18#define _TopoDSToStep_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <TopoDSToStep_BuilderError.hxx>
25#include <TopoDSToStep_MakeFaceError.hxx>
26#include <TopoDSToStep_MakeWireError.hxx>
27#include <TopoDSToStep_MakeEdgeError.hxx>
28#include <TopoDSToStep_MakeVertexError.hxx>
29class TCollection_HAsciiString;
30class Transfer_FinderProcess;
31class TopoDS_Shape;
32class Standard_Transient;
33class TopoDSToStep_Tool;
34class TopoDSToStep_Root;
35class TopoDSToStep_MakeManifoldSolidBrep;
36class TopoDSToStep_MakeBrepWithVoids;
37class TopoDSToStep_MakeFacetedBrep;
38class TopoDSToStep_MakeFacetedBrepAndBrepWithVoids;
39class TopoDSToStep_MakeShellBasedSurfaceModel;
40class TopoDSToStep_MakeGeometricCurveSet;
41class TopoDSToStep_Builder;
42class TopoDSToStep_WireframeBuilder;
43class TopoDSToStep_Tool;
44class TopoDSToStep_FacetedTool;
45class TopoDSToStep_MakeStepFace;
46class TopoDSToStep_MakeStepWire;
47class TopoDSToStep_MakeStepEdge;
48class TopoDSToStep_MakeStepVertex;
49
50
51//! This package implements the mapping between CAS.CAD
52//! Shape representation and AP214 Shape Representation.
53//! The target schema is pms_c4 (a subset of AP214)
54//!
55//! How to use this Package :
56//!
57//! Entry point are context dependent. It can be :
58//! MakeManifoldSolidBrep
59//! MakeBrepWithVoids
60//! MakeFacetedBrep
61//! MakeFacetedBrepAndBrepWithVoids
62//! MakeShellBasedSurfaceModel
63//! Each of these classes call the Builder
64//! The class tool centralizes some common informations.
65class TopoDSToStep
66{
67public:
68
69 DEFINE_STANDARD_ALLOC
70
71
72 Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeBuilderError (const TopoDSToStep_BuilderError E);
73
74 Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeFaceError (const TopoDSToStep_MakeFaceError E);
75
76 Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeWireError (const TopoDSToStep_MakeWireError E);
77
78 Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeEdgeError (const TopoDSToStep_MakeEdgeError E);
79
80 //! Returns a new shape without undirect surfaces.
81 Standard_EXPORT static Handle(TCollection_HAsciiString) DecodeVertexError (const TopoDSToStep_MakeVertexError E);
82
83 //! Adds an entity into the list of results (binders) for
84 //! shape stored in FinderProcess
85 Standard_EXPORT static void AddResult (const Handle(Transfer_FinderProcess)& FP, const TopoDS_Shape& Shape, const Handle(Standard_Transient)& entity);
86
87 //! Adds all entities recorded in Tool into the map of results
88 //! (binders) stored in FinderProcess
89 Standard_EXPORT static void AddResult (const Handle(Transfer_FinderProcess)& FP, const TopoDSToStep_Tool& Tool);
90
91
92
93
94protected:
95
96
97
98
99
100private:
101
102
103
104
105friend class TopoDSToStep_Root;
106friend class TopoDSToStep_MakeManifoldSolidBrep;
107friend class TopoDSToStep_MakeBrepWithVoids;
108friend class TopoDSToStep_MakeFacetedBrep;
109friend class TopoDSToStep_MakeFacetedBrepAndBrepWithVoids;
110friend class TopoDSToStep_MakeShellBasedSurfaceModel;
111friend class TopoDSToStep_MakeGeometricCurveSet;
112friend class TopoDSToStep_Builder;
113friend class TopoDSToStep_WireframeBuilder;
114friend class TopoDSToStep_Tool;
115friend class TopoDSToStep_FacetedTool;
116friend class TopoDSToStep_MakeStepFace;
117friend class TopoDSToStep_MakeStepWire;
118friend class TopoDSToStep_MakeStepEdge;
119friend class TopoDSToStep_MakeStepVertex;
120
121};
122
123
124
125
126
127
128
129#endif // _TopoDSToStep_HeaderFile