CR32614 Coding - get rid of unsused forward declarations [Adaptor2d to GccAna]
[occt.git] / src / DrawDim / DrawDim_PlanarDistance.hxx
CommitLineData
42cf5bc1 1// Created on: 1996-01-10
2// Created by: Denis PASCAL
3// Copyright (c) 1996-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 _DrawDim_PlanarDistance_HeaderFile
18#define _DrawDim_PlanarDistance_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <TopoDS_Shape.hxx>
24#include <DrawDim_PlanarDimension.hxx>
25class TopoDS_Face;
42cf5bc1 26class Draw_Display;
27class gp_Pnt;
28class TopoDS_Edge;
29
30
31class DrawDim_PlanarDistance;
32DEFINE_STANDARD_HANDLE(DrawDim_PlanarDistance, DrawDim_PlanarDimension)
33
34//! PlanarDistance point/point
35//! PlanarDistance point/line
36//! PlanarDistance line/line
37class DrawDim_PlanarDistance : public DrawDim_PlanarDimension
38{
39
40public:
41
42
43 Standard_EXPORT DrawDim_PlanarDistance(const TopoDS_Face& plane, const TopoDS_Shape& point1, const TopoDS_Shape& point2);
44
45 Standard_EXPORT DrawDim_PlanarDistance(const TopoDS_Shape& geom1, const TopoDS_Shape& geom2);
46
47 //! private
79104795 48 Standard_EXPORT void DrawOn (Draw_Display& dis) const Standard_OVERRIDE;
42cf5bc1 49
50
51
52
92efcf78 53 DEFINE_STANDARD_RTTIEXT(DrawDim_PlanarDistance,DrawDim_PlanarDimension)
42cf5bc1 54
55protected:
56
57
58
59
60private:
61
62
63 Standard_EXPORT void Draw (const gp_Pnt& p, const TopoDS_Edge& e, Draw_Display& d) const;
64
65 TopoDS_Shape myGeom1;
66 TopoDS_Shape myGeom2;
67
68
69};
70
71
72
73
74
75
76
77#endif // _DrawDim_PlanarDistance_HeaderFile