1 // Copyright (c) 2003-2008  INRIA Sophia-Antipolis (France).
2 // All rights reserved.
3 //
4 // This file is part of CGAL (www.cgal.org).
5 //
6 // $URL: https://github.com/CGAL/cgal/blob/v5.3/Circular_kernel_2/include/CGAL/Circular_kernel_2/interface_macros.h $
7 // $Id: interface_macros.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
8 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
9 //
10 // Author(s)     : Monique Teillaud, Sylvain Pion, Pedro Machado
11 
12 // Partially supported by the IST Programme of the EU as a Shared-cost
13 // RTD (FET Open) Project under Contract No  IST-2000-26473
14 // (ECG - Effective Computational Geometry for Curves and Surfaces)
15 // and a STREP (FET Open) Project under Contract No  IST-006413
16 // (ACS -- Algorithms for Complex Shapes)
17 
18 
19 
20 // This file is intentionally not protected against re-inclusion.
21 // It's aimed at being included from within a kernel traits class, this
22 // way we share more code.
23 
24 // It is the responsability of the including file to correctly set the 2
25 // macros CGAL_Circular_Kernel_pred and CGAL_Circular_Kernel_cons.
26 // And they are #undefed at the end of this file.
27 
28   CGAL_Circular_Kernel_cons(Compute_squared_radius_2,
29   compute_squared_radius_2_object)
30   CGAL_Circular_Kernel_cons(Construct_center_2,
31   construct_center_2_object)
32   CGAL_Circular_Kernel_cons(Get_equation,
33   get_equation_object)
34   CGAL_Circular_Kernel_cons(Construct_circle_2,
35   construct_circle_2_object)
36   CGAL_Circular_Kernel_pred(Compare_x_2,
37   compare_x_2_object)
38   CGAL_Circular_Kernel_pred(Compare_y_2,
39   compare_y_2_object)
40   CGAL_Circular_Kernel_pred(Compare_xy_2,
41   compare_xy_2_object)
42   CGAL_Circular_Kernel_pred(Compare_y_at_x_2,
43   compare_y_at_x_2_object)
44   CGAL_Circular_Kernel_pred(Compare_y_to_right_2,
45   compare_y_to_right_2_object)
46   CGAL_Circular_Kernel_pred(Do_overlap_2,
47   do_overlap_2_object)
48   CGAL_Circular_Kernel_pred(Equal_2,
49   equal_2_object)
50   CGAL_Circular_Kernel_pred(In_x_range_2,
51   in_x_range_2_object)
52   CGAL_Circular_Kernel_cons(Make_x_monotone_2,
53   make_x_monotone_2_object)
54   CGAL_Circular_Kernel_cons(Make_xy_monotone_2,
55   make_xy_monotone_2_object)
56   CGAL_Circular_Kernel_cons(Intersect_2,
57   intersect_2_object)
58   CGAL_Circular_Kernel_cons(Split_2,
59   split_2_object)
60   CGAL_Circular_Kernel_cons(Construct_circular_arc_2,
61   construct_circular_arc_2_object)
62   CGAL_Circular_Kernel_cons(Construct_line_arc_2,
63   construct_line_arc_2_object)
64   CGAL_Circular_Kernel_cons(Construct_circular_arc_point_2,
65   construct_circular_arc_point_2_object)
66   CGAL_Circular_Kernel_cons(Compute_circular_x_2,
67   compute_circular_x_2_object)
68   CGAL_Circular_Kernel_cons(Compute_circular_y_2,
69   compute_circular_y_2_object)
70   CGAL_Circular_Kernel_cons(Construct_circular_min_vertex_2,
71   construct_circular_min_vertex_2_object)
72   CGAL_Circular_Kernel_cons(Construct_circular_max_vertex_2,
73   construct_circular_max_vertex_2_object)
74   CGAL_Circular_Kernel_cons(Construct_circular_source_vertex_2,
75   construct_circular_source_vertex_2_object)
76   CGAL_Circular_Kernel_cons(Construct_circular_target_vertex_2,
77   construct_circular_target_vertex_2_object)
78   CGAL_Circular_Kernel_pred(Is_x_monotone_2,
79   is_x_monotone_2_object)
80   CGAL_Circular_Kernel_pred(Is_y_monotone_2,
81   is_y_monotone_2_object)
82   CGAL_Circular_Kernel_pred(Is_vertical_2,
83   is_vertical_2_object)
84   CGAL_Circular_Kernel_pred(Has_on_2,
85   has_on_2_object)
86 
87   CGAL_Circular_Kernel_pred(Has_on_bounded_side_2, has_on_bounded_side_2_object)
88   CGAL_Circular_Kernel_pred(Has_on_unbounded_side_2, has_on_unbounded_side_2_object)
89   CGAL_Circular_Kernel_pred(Bounded_side_2, bounded_side_2_object)
90   CGAL_Circular_Kernel_pred(Do_intersect_2, do_intersect_2_object)
91 
92 #ifndef CGAL_NO_DEPRECATED_CODE
93         CGAL_Circular_Kernel_cons(Construct_supporting_circle_2,
94           construct_supporting_circle_2_object)
95         CGAL_Circular_Kernel_cons(Construct_supporting_line_2,
96           construct_supporting_line_2_object)
97 #endif
98 
99   CGAL_Circular_Kernel_cons(Construct_bbox_2,
100   construct_bbox_2_object)
101 
102 
103 #undef CGAL_Circular_Kernel_pred
104 #undef CGAL_Circular_Kernel_cons
105