1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_INDEX_SERVICES_HPP
- #define BOOST_GEOMETRY_STRATEGIES_INDEX_SERVICES_HPP
- #include <boost/geometry/core/cs.hpp>
- #include <boost/geometry/core/static_assert.hpp>
- namespace boost { namespace geometry
- {
-
- namespace strategies { namespace index { namespace services
- {
- template
- <
- typename Geometry,
- typename CSTag = typename geometry::cs_tag<Geometry>::type
- >
- struct default_strategy
- {
- BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
- "Not implemented for this coordinate system.",
- Geometry, CSTag);
- };
- template <typename Strategy>
- struct strategy_converter
- {
- BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
- "Not implemented for this Strategy.",
- Strategy);
- };
- }}}
- }}
- #endif
|