1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_CENTROID_HPP
- #define BOOST_GEOMETRY_STRATEGIES_CENTROID_HPP
- #include <cstddef>
- #include <boost/geometry/core/tags.hpp>
- #include <boost/geometry/strategies/tags.hpp>
- namespace boost { namespace geometry
- {
- namespace strategy { namespace centroid
- {
- struct not_applicable_strategy
- {
- };
- namespace services
- {
- template
- <
- typename CsTag,
- typename GeometryTag,
- std::size_t Dimension,
- typename Point,
- typename Geometry
- >
- struct default_strategy
- {
- typedef not_applicable_strategy type;
- };
- }
- }}
- }}
- #endif
|