12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #ifndef BOOST_GEOMETRY_STRATEGY_AREA_HPP
- #define BOOST_GEOMETRY_STRATEGY_AREA_HPP
- #include <boost/geometry/core/coordinate_type.hpp>
- #include <boost/geometry/core/static_assert.hpp>
- #include <boost/geometry/util/select_most_precise.hpp>
- namespace boost { namespace geometry
- {
- namespace strategy { namespace area
- {
- #ifndef DOXYGEN_NO_DETAIL
- namespace detail
- {
- template
- <
- typename Geometry,
- typename CalculationType
- >
- struct result_type
- {
- typedef CalculationType type;
- };
- template
- <
- typename Geometry
- >
- struct result_type<Geometry, void>
- : select_most_precise
- <
- typename coordinate_type<Geometry>::type,
- double
- >
- {};
- }
- #endif
- namespace services
- {
- template <typename Tag>
- struct default_strategy
- {
- BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
- "Not implemented for this coordinate system.",
- Tag);
- };
- }
- }}
- }}
- #endif
|