is_bounding_geometry.hpp 942 B

1234567891011121314151617181920212223242526272829303132333435
  1. // Boost.Geometry Index
  2. //
  3. // Copyright (c) 2011-2015 Adam Wulkiewicz, Lodz, Poland.
  4. //
  5. // Use, modification and distribution is subject to the Boost Software License,
  6. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_GEOMETRY_INDEX_DETAIL_IS_BOUNDING_GEOMETRY_HPP
  9. #define BOOST_GEOMETRY_INDEX_DETAIL_IS_BOUNDING_GEOMETRY_HPP
  10. #include <boost/geometry/core/tag.hpp>
  11. #include <boost/geometry/core/tags.hpp>
  12. namespace boost { namespace geometry { namespace index { namespace detail {
  13. template
  14. <
  15. typename Geometry,
  16. typename Tag = typename geometry::tag<Geometry>::type
  17. >
  18. struct is_bounding_geometry
  19. {
  20. static const bool value = false;
  21. };
  22. template <typename Box>
  23. struct is_bounding_geometry<Box, box_tag>
  24. {
  25. static const bool value = true;
  26. };
  27. }}}} // namespave boost::geometry::index::detail
  28. #endif // BOOST_GEOMETRY_INDEX_DETAIL_IS_BOUNDING_GEOMETRY_HPP