0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
[occt.git] / src / Geom2dAdaptor / Geom2dAdaptor_HCurve.cxx
1 // Created on: 1995-08-25
2 // Created by: Remi LEQUETTE
3 // Copyright (c) 1995-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
18 #include <Geom2d_Curve.hxx>
19 #include <Geom2dAdaptor_Curve.hxx>
20 #include <Geom2dAdaptor_HCurve.hxx>
21 #include <Standard_ConstructionError.hxx>
22 #include <Standard_Type.hxx>
23
24 IMPLEMENT_STANDARD_RTTIEXT(Geom2dAdaptor_HCurve,Geom2dAdaptor_GHCurve)
25
26 //=======================================================================
27 //function : Geom2dAdaptor_HCurve
28 //purpose  : 
29 //=======================================================================
30 Geom2dAdaptor_HCurve::Geom2dAdaptor_HCurve()
31 {
32 }
33
34 //=======================================================================
35 //function : Geom2dAdaptor_HCurve
36 //purpose  : 
37 //=======================================================================
38
39 Geom2dAdaptor_HCurve::Geom2dAdaptor_HCurve(const Geom2dAdaptor_Curve& AS) :
40 Geom2dAdaptor_GHCurve(AS)
41 {
42 }
43
44 //=======================================================================
45 //function : Geom2dAdaptor_HCurve
46 //purpose  : 
47 //=======================================================================
48
49 Geom2dAdaptor_HCurve::Geom2dAdaptor_HCurve(const Handle(Geom2d_Curve)& S)
50 {
51   ChangeCurve2d().Load(S);
52 }
53
54 //=======================================================================
55 //function : Geom2dAdaptor_HCurve
56 //purpose  : 
57 //=======================================================================
58
59 Geom2dAdaptor_HCurve::Geom2dAdaptor_HCurve(const Handle(Geom2d_Curve)& S, 
60                                                   const Standard_Real UFirst, 
61                                                   const Standard_Real ULast)
62 {
63   ChangeCurve2d().Load(S,UFirst,ULast);
64 }
65