remove template parameter

This commit is contained in:
Andreas Fabri 2019-04-11 09:21:37 +02:00
parent a494bf3678
commit dd6691b2ce
1 changed files with 10 additions and 10 deletions

View File

@ -77,7 +77,7 @@ public:
} }
}; };
template <typename PointPropertyMap, typename K> template <typename K>
struct Pmap_compare_x_at_y_2 { struct Pmap_compare_x_at_y_2 {
PointPropertyMap ppmap; PointPropertyMap ppmap;
@ -96,7 +96,7 @@ public:
template <typename PointPropertyMap, typename K> template <typename K>
struct Pmap_collinear_are_ordered_along_line_2 { struct Pmap_collinear_are_ordered_along_line_2 {
PointPropertyMap ppmap; PointPropertyMap ppmap;
@ -135,11 +135,11 @@ public:
// needed by Indirect_edge_compare, used in y_monotone and greene_approx // needed by Indirect_edge_compare, used in y_monotone and greene_approx
typedef typename Kernel::Line_2 Line_2; typedef typename Kernel::Line_2 Line_2;
typedef Pmap_fct<typename Kernel::Construct_line_2> Construct_line_2; typedef Pmap_fct<typename Kernel::Construct_line_2> Construct_line_2;
typedef Pmap_compare_x_at_y_2<PointPropertyMap,Kernel> Compare_x_at_y_2; typedef Pmap_compare_x_at_y_2<Kernel> Compare_x_at_y_2;
typedef typename Kernel::Is_horizontal_2 Is_horizontal_2; typedef typename Kernel::Is_horizontal_2 Is_horizontal_2;
// needed by visibility graph and thus by optimal convex // needed by visibility graph and thus by optimal convex
typedef Pmap_collinear_are_ordered_along_line_2<PointPropertyMap,Kernel> Collinear_are_ordered_along_line_2; typedef Pmap_collinear_are_ordered_along_line_2<Kernel> Collinear_are_ordered_along_line_2;
typedef Pmap_fct<typename Kernel::Are_strictly_ordered_along_line_2> typedef Pmap_fct<typename Kernel::Are_strictly_ordered_along_line_2>
Are_strictly_ordered_along_line_2; Are_strictly_ordered_along_line_2;