1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef BOOST_GEOMETRY_ALGORITHMS_DEFAULT_AREA_RESULT_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DEFAULT_AREA_RESULT_HPP
- #include <boost/geometry/algorithms/area_result.hpp>
- namespace boost { namespace geometry
- {
- template <typename Geometry>
- struct default_area_result
- : area_result<Geometry>
- {};
- }}
- #endif
|