123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_CONCEPTS_SIMPLIFY_CONCEPT_HPP
- #define BOOST_GEOMETRY_STRATEGIES_CONCEPTS_SIMPLIFY_CONCEPT_HPP
- #include <iterator>
- #include <type_traits>
- #include <vector>
- #include <boost/concept_check.hpp>
- #include <boost/core/ignore_unused.hpp>
- #include <boost/geometry/geometries/point.hpp>
- #include <boost/geometry/strategies/concepts/distance_concept.hpp>
- namespace boost { namespace geometry { namespace concepts
- {
- template <typename Strategy, typename Point>
- struct SimplifyStrategy
- {
- #ifndef DOXYGEN_NO_CONCEPT_MEMBERS
- private :
-
-
- typedef typename Strategy::distance_strategy_type ds_type;
- struct checker
- {
- template <typename ApplyMethod>
- static void apply(ApplyMethod)
- {
- namespace ft = boost::function_types;
- typedef typename ft::parameter_types
- <
- ApplyMethod
- >::type parameter_types;
- typedef std::conditional_t
- <
- ft::is_member_function_pointer<ApplyMethod>::value,
- std::integral_constant<int, 1>,
- std::integral_constant<int, 0>
- > base_index;
- BOOST_CONCEPT_ASSERT
- (
- (concepts::PointSegmentDistanceStrategy<ds_type, Point, Point>)
- );
- Strategy *str = 0;
- std::vector<Point> const* v1 = 0;
- std::vector<Point> * v2 = 0;
-
-
-
-
- str->apply(*v1, std::back_inserter(*v2), 1.0);
- boost::ignore_unused<parameter_types, base_index>();
- boost::ignore_unused(str);
- }
- };
- public :
- BOOST_CONCEPT_USAGE(SimplifyStrategy)
- {
- checker::apply(&ds_type::template apply<Point, Point>);
- }
- #endif
- };
- }}}
- #endif
|