123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_SIDE_HPP
- #define BOOST_GEOMETRY_STRATEGIES_SIDE_HPP
- #include <boost/geometry/core/static_assert.hpp>
- #include <boost/geometry/strategies/tags.hpp>
- namespace boost { namespace geometry
- {
- namespace strategy { namespace side
- {
- namespace services
- {
- template <typename CSTag, typename CalculationType = void>
- struct default_strategy
- {
- BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
- "Not implemented for this type.",
- CSTag);
- };
- }
- }}
- }}
- #endif
|