0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
[occt.git] / src / Adaptor2d / Adaptor2d_HOffsetCurve.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
5201d3e6 17#ifndef _Adaptor2d_HOffsetCurve_HeaderFile
18#define _Adaptor2d_HOffsetCurve_HeaderFile
42cf5bc1 19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
5201d3e6 23#include <Adaptor2d_OffsetCurve.hxx>
42cf5bc1 24#include <Adaptor2d_HCurve2d.hxx>
25class Standard_OutOfRange;
26class Standard_NoSuchObject;
27class Standard_DomainError;
5201d3e6 28class Adaptor2d_OffsetCurve;
42cf5bc1 29class Adaptor2d_Curve2d;
30
31
5201d3e6 32class Adaptor2d_HOffsetCurve;
33DEFINE_STANDARD_HANDLE(Adaptor2d_HOffsetCurve, Adaptor2d_HCurve2d)
42cf5bc1 34
35
5201d3e6 36class Adaptor2d_HOffsetCurve : public Adaptor2d_HCurve2d
42cf5bc1 37{
38
39public:
40
41
36b9ff75 42 //! Creates an empty GenHCurve2d.
5201d3e6 43 Standard_EXPORT Adaptor2d_HOffsetCurve();
42cf5bc1 44
36b9ff75 45 //! Creates a GenHCurve2d from a Curve
5201d3e6 46 Standard_EXPORT Adaptor2d_HOffsetCurve(const Adaptor2d_OffsetCurve& C);
42cf5bc1 47
36b9ff75 48 //! Sets the field of the GenHCurve2d.
5201d3e6 49 Standard_EXPORT void Set (const Adaptor2d_OffsetCurve& C);
42cf5bc1 50
36b9ff75 51 //! Returns the curve used to create the GenHCurve2d.
52 //! This is redefined from HCurve2d, cannot be inline.
79104795 53 Standard_EXPORT const Adaptor2d_Curve2d& Curve2d() const Standard_OVERRIDE;
42cf5bc1 54
36b9ff75 55 //! Returns the curve used to create the GenHCurve.
5201d3e6 56 Adaptor2d_OffsetCurve& ChangeCurve2d();
42cf5bc1 57
58
59
60
92efcf78 61 DEFINE_STANDARD_RTTI_INLINE(Adaptor2d_HOffsetCurve,Adaptor2d_HCurve2d)
42cf5bc1 62
63protected:
64
65
5201d3e6 66 Adaptor2d_OffsetCurve myCurve;
42cf5bc1 67
68
69private:
70
71
72
73
74};
75
5201d3e6 76#define TheCurve Adaptor2d_OffsetCurve
77#define TheCurve_hxx <Adaptor2d_OffsetCurve.hxx>
78#define Adaptor2d_GenHCurve2d Adaptor2d_HOffsetCurve
79#define Adaptor2d_GenHCurve2d_hxx <Adaptor2d_HOffsetCurve.hxx>
80#define Handle_Adaptor2d_GenHCurve2d Handle(Adaptor2d_HOffsetCurve)
42cf5bc1 81
82#include <Adaptor2d_GenHCurve2d.lxx>
83
84#undef TheCurve
85#undef TheCurve_hxx
86#undef Adaptor2d_GenHCurve2d
87#undef Adaptor2d_GenHCurve2d_hxx
88#undef Handle_Adaptor2d_GenHCurve2d
89
90
91
92
5201d3e6 93#endif // _Adaptor2d_HOffsetCurve_HeaderFile