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