b27a5c20e7cd71b6d211b0f4dcb62fa79aefd6df
[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 informations 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 informations from the
52   //! Surface from Adaptor3d
53   Standard_EXPORT static Handle(Geom_Surface) MakeSurface (const Adaptor3d_Surface& S);
54
55
56
57
58 protected:
59
60
61
62
63
64 private:
65
66
67
68
69 friend class GeomAdaptor_Curve;
70 friend class GeomAdaptor_Surface;
71 friend class GeomAdaptor_GHSurface;
72 friend class GeomAdaptor_HSurface;
73 friend class GeomAdaptor_GHCurve;
74 friend class GeomAdaptor_HCurve;
75
76 };
77
78
79
80
81
82
83
84 #endif // _GeomAdaptor_HeaderFile