1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
// Copyright (c) 2003-2006 INRIA Sophia-Antipolis (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org); you may redistribute it under
// the terms of the Q Public License version 1.0.
// See the file LICENSE.QPL distributed with CGAL.
//
// Licensees holding a valid commercial license may use this file in
// accordance with the commercial license agreement provided with the software.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
//
// $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.2-branch/Curved_kernel/include/CGAL/Curved_kernel/interface_macros.h $
// $Id: interface_macros.h 29284 2006-03-09 13:36:00Z teillaud $
//
// Author(s) : Monique Teillaud, Sylvain Pion
// This file is intentionally not protected against re-inclusion.
// It's aimed at being included from within a kernel traits class, this
// way we share more code.
// It is the responsability of the including file to correctly set the 2
// macros CGAL_Curved_Kernel_pred and CGAL_Curved_Kernel_cons.
// And they are #undefed at the end of this file.
CGAL_Curved_Kernel_cons(Get_equation,
get_equation_object)
CGAL_Curved_Kernel_cons(Construct_circle_2,
construct_circle_2_object)
CGAL_Curved_Kernel_pred(Compare_x_2,
compare_x_2_object)
CGAL_Curved_Kernel_pred(Compare_y_2,
compare_y_2_object)
CGAL_Curved_Kernel_pred(Compare_xy_2,
compare_xy_2_object)
CGAL_Curved_Kernel_pred(Compare_y_at_x_2,
compare_y_at_x_2_object)
CGAL_Curved_Kernel_pred(Compare_y_to_right_2,
compare_y_to_right_2_object)
CGAL_Curved_Kernel_pred(Do_overlap_2,
do_overlap_2_object)
CGAL_Curved_Kernel_pred(Equal_2,
equal_2_object)
CGAL_Curved_Kernel_pred(In_x_range_2,
in_x_range_2_object)
CGAL_Curved_Kernel_cons(Make_x_monotone_2,
make_x_monotone_2_object)
CGAL_Curved_Kernel_cons(Make_xy_monotone_2,
make_xy_monotone_2_object)
CGAL_Curved_Kernel_cons(Advanced_make_x_monotone_2,
advanced_make_x_monotone_2_object)
CGAL_Curved_Kernel_cons(Advanced_make_xy_monotone_2,
advanced_make_xy_monotone_2_object)
CGAL_Curved_Kernel_cons(Intersect_2,
intersect_2_object)
CGAL_Curved_Kernel_cons(Split_2,
split_2_object)
CGAL_Curved_Kernel_cons(Construct_circular_arc_2,
construct_circular_arc_2_object)
CGAL_Curved_Kernel_cons(Construct_line_arc_2,
construct_line_arc_2_object)
CGAL_Curved_Kernel_cons(Construct_circular_arc_point_2,
construct_circular_arc_point_2_object)
CGAL_Curved_Kernel_cons(Compute_Circular_x_2,
compute_circular_x_2_object)
CGAL_Curved_Kernel_cons(Compute_Circular_y_2,
compute_circular_y_2_object)
CGAL_Curved_Kernel_cons(Construct_circular_min_vertex_2,
construct_circular_min_vertex_2_object)
CGAL_Curved_Kernel_cons(Construct_circular_max_vertex_2,
construct_circular_max_vertex_2_object)
CGAL_Curved_Kernel_cons(Construct_circular_source_vertex_2,
construct_circular_source_vertex_2_object)
CGAL_Curved_Kernel_cons(Construct_circular_target_vertex_2,
construct_circular_target_vertex_2_object)
CGAL_Curved_Kernel_pred(Is_x_monotone_2,
is_x_monotone_2_object)
CGAL_Curved_Kernel_pred(Is_y_monotone_2,
is_y_monotone_2_object)
CGAL_Curved_Kernel_pred(On_upper_part_2,
on_upper_part_2_object)
CGAL_Curved_Kernel_pred(Is_vertical_2,
is_vertical_2_object)
CGAL_Curved_Kernel_pred(Has_on_2,
has_on_2_object)
CGAL_Curved_Kernel_cons(Construct_supporting_circle_2,
construct_supporting_circle_2_object)
CGAL_Curved_Kernel_cons(Construct_supporting_line_2,
construct_supporting_line_2_object)
CGAL_Curved_Kernel_cons(Construct_bbox_2,
construct_bbox_2_object)
#undef CGAL_Curved_Kernel_pred
#undef CGAL_Curved_Kernel_cons
|