0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
[occt.git] / src / Adaptor3d / Adaptor3d_HVertex.hxx
1 // Created on: 1994-03-25
2 // Created by: model
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 _Adaptor3d_HVertex_HeaderFile
18 #define _Adaptor3d_HVertex_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <gp_Pnt2d.hxx>
24 #include <Standard_Real.hxx>
25 #include <TopAbs_Orientation.hxx>
26 #include <MMgt_TShared.hxx>
27 #include <Standard_Boolean.hxx>
28 class gp_Pnt2d;
29 class Adaptor2d_HCurve2d;
30
31
32 class Adaptor3d_HVertex;
33 DEFINE_STANDARD_HANDLE(Adaptor3d_HVertex, MMgt_TShared)
34
35
36 class Adaptor3d_HVertex : public MMgt_TShared
37 {
38
39 public:
40
41   
42   Standard_EXPORT Adaptor3d_HVertex();
43   
44   Standard_EXPORT Adaptor3d_HVertex(const gp_Pnt2d& P, const TopAbs_Orientation Ori, const Standard_Real Resolution);
45   
46   Standard_EXPORT virtual gp_Pnt2d Value();
47   
48   Standard_EXPORT virtual Standard_Real Parameter (const Handle(Adaptor2d_HCurve2d)& C);
49   
50   //! Parametric resolution (2d).
51   Standard_EXPORT virtual Standard_Real Resolution (const Handle(Adaptor2d_HCurve2d)& C);
52   
53   Standard_EXPORT virtual TopAbs_Orientation Orientation();
54   
55   Standard_EXPORT virtual Standard_Boolean IsSame (const Handle(Adaptor3d_HVertex)& Other);
56
57
58
59
60   DEFINE_STANDARD_RTTIEXT(Adaptor3d_HVertex,MMgt_TShared)
61
62 protected:
63
64
65
66
67 private:
68
69
70   gp_Pnt2d myPnt;
71   Standard_Real myTol;
72   TopAbs_Orientation myOri;
73
74
75 };
76
77
78
79
80
81
82
83 #endif // _Adaptor3d_HVertex_HeaderFile