12345678910111213141516171819202122232425262728 |
- #ifndef BOOST_GEOMETRY_UTIL_BOUNDS_HPP
- #define BOOST_GEOMETRY_UTIL_BOUNDS_HPP
- #include <boost/numeric/conversion/bounds.hpp>
- namespace boost { namespace geometry { namespace util
- {
- template<class CT>
- struct bounds
- {
- static CT lowest () { return boost::numeric::bounds<CT>::lowest(); }
- static CT highest () { return boost::numeric::bounds<CT>::highest(); }
- };
- }}}
- #endif
|