0026616: Memory leak in IntTools_Context::Hatcher
[occt.git] / src / GeomAdaptor / GeomAdaptor.hxx
CommitLineData
42cf5bc1 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
24class Geom_Curve;
25class Adaptor3d_Curve;
26class Geom_Surface;
27class Adaptor3d_Surface;
28class GeomAdaptor_Curve;
29class GeomAdaptor_Surface;
30class GeomAdaptor_GHSurface;
31class GeomAdaptor_HSurface;
32class GeomAdaptor_GHCurve;
33class GeomAdaptor_HCurve;
34
35
36//! this package contains the geometric definition of
37//! curve and surface necessary to use algorithmes.
38class GeomAdaptor
39{
40public:
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
58protected:
59
60
61
62
63
64private:
65
66
67
68
69friend class GeomAdaptor_Curve;
70friend class GeomAdaptor_Surface;
71friend class GeomAdaptor_GHSurface;
72friend class GeomAdaptor_HSurface;
73friend class GeomAdaptor_GHCurve;
74friend class GeomAdaptor_HCurve;
75
76};
77
78
79
80
81
82
83
84#endif // _GeomAdaptor_HeaderFile