0023024: Update headers of OCCT files
[occt.git] / src / GccInt / GccInt_Bisec.cxx
1 // Created on: 1992-01-27
2 // Created by: Remi GILET
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2012 OPEN CASCADE SAS
5 //
6 // The content of this file is subject to the Open CASCADE Technology Public
7 // License Version 6.5 (the "License"). You may not use the content of this file
8 // except in compliance with the License. Please obtain a copy of the License
9 // at http://www.opencascade.org and read it completely before using this file.
10 //
11 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 //
14 // The Original Code and all software distributed under the License is
15 // distributed on an "AS IS" basis, without warranty of any kind, and the
16 // Initial Developer hereby disclaims all such warranties, including without
17 // limitation, any warranties of merchantability, fitness for a particular
18 // purpose or non-infringement. Please see the License for the specific terms
19 // and conditions governing the rights and limitations under the License.
20
21
22 #include <GccInt_Bisec.ixx>
23 #include <gp_Circ2d.hxx>
24 #include <gp_Elips2d.hxx>
25 #include <gp_Hypr2d.hxx>
26 #include <gp_Lin2d.hxx>
27 #include <gp_Parab2d.hxx>
28 #include <gp_Pnt2d.hxx>
29 #include <Standard_NotImplemented.hxx>
30
31 gp_Circ2d GccInt_Bisec::
32   Circle() const { 
33     Standard_NotImplemented::Raise();
34     return gp_Circ2d();
35     }
36
37 gp_Elips2d GccInt_Bisec::
38   Ellipse() const { 
39     Standard_NotImplemented::Raise();
40     return gp_Elips2d();
41     }
42
43 gp_Hypr2d GccInt_Bisec::
44   Hyperbola() const { 
45     Standard_NotImplemented::Raise();
46     return gp_Hypr2d();
47     }
48
49 gp_Lin2d GccInt_Bisec::
50   Line() const {
51     Standard_NotImplemented::Raise();
52     return gp_Lin2d();
53     }
54
55 gp_Parab2d GccInt_Bisec::
56   Parabola() const { 
57     Standard_NotImplemented::Raise();
58     return gp_Parab2d();
59     }
60
61 gp_Pnt2d GccInt_Bisec::
62   Point() const { 
63     Standard_NotImplemented::Raise();
64     return gp_Pnt2d();
65     }
66