0031939: Coding - correction of spelling errors in comments
[occt.git] / src / GeomAdaptor / GeomAdaptor.hxx
1 // Created on: 1992-10-08
2 // Created by: Isabelle GRIGNON
3 // Copyright (c) 1992-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 _GeomAdaptor_HeaderFile
18 #define _GeomAdaptor_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 class Geom_Curve;
25 class Adaptor3d_Curve;
26 class Geom_Surface;
27 class Adaptor3d_Surface;
28 class GeomAdaptor_Curve;
29 class GeomAdaptor_Surface;
30 class GeomAdaptor_GHSurface;
31 class GeomAdaptor_HSurface;
32 class GeomAdaptor_GHCurve;
33 class GeomAdaptor_HCurve;
34
35
36 //! this package contains the  geometric definition of
37 //! curve and surface necessary to use algorithmes.
38 class GeomAdaptor 
39 {
40 public:
41
42   DEFINE_STANDARD_ALLOC
43
44   
45   //! Inherited  from    GHCurve.   Provides a  curve
46   //! handled by reference.
47   //! Build a Geom_Curve using the information from the
48   //! Curve from Adaptor3d
49   Standard_EXPORT static Handle(Geom_Curve) MakeCurve (const Adaptor3d_Curve& C);
50   
51   //! Build a Geom_Surface using the information from the Surface from Adaptor3d
52   //! @param theS - Surface adaptor to convert.
53   //! @param theTrimFlag - True if perform trim surface values by adaptor and false otherwise.
54   Standard_EXPORT static Handle(Geom_Surface) MakeSurface (const Adaptor3d_Surface& theS,
55                                                            const Standard_Boolean theTrimFlag = Standard_True);
56
57
58
59
60 protected:
61
62
63
64
65
66 private:
67
68
69
70
71 friend class GeomAdaptor_Curve;
72 friend class GeomAdaptor_Surface;
73 friend class GeomAdaptor_GHSurface;
74 friend class GeomAdaptor_HSurface;
75 friend class GeomAdaptor_GHCurve;
76 friend class GeomAdaptor_HCurve;
77
78 };
79
80
81
82
83
84
85
86 #endif // _GeomAdaptor_HeaderFile