1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_TRANSFORM_HPP
- #define BOOST_GEOMETRY_STRATEGIES_TRANSFORM_HPP
- #include <cstddef>
- #include <boost/geometry/core/static_assert.hpp>
- #include <boost/geometry/strategies/tags.hpp>
- namespace boost { namespace geometry
- {
- namespace strategy { namespace transform { namespace services
- {
- template
- <
- typename CoordinateSystemTag1, typename CoordinateSystemTag2,
- typename CoordinateSystem1, typename CoordinateSystem2,
- std::size_t Dimension1, std::size_t Dimension2,
- typename Point1, typename Point2
- >
- struct default_strategy
- {
- BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
- "Not implemented for these Point types.",
- Point1, Point2);
- };
- }}}
- }}
- #endif
|