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
9#ifndef BOOST_GEOMETRY_INDEX_DETAIL_IS_BOUNDING_GEOMETRY_HPP
10#define BOOST_GEOMETRY_INDEX_DETAIL_IS_BOUNDING_GEOMETRY_HPP
11
12#include <boost/geometry/core/tag.hpp>
13#include <boost/geometry/core/tags.hpp>
14
15namespace boost { namespace geometry { namespace index { namespace detail {
16
17template
18<
19 typename Geometry,
20 typename Tag = typename geometry::tag<Geometry>::type
21>
22struct is_bounding_geometry
23{
24 static const bool value = false;
25};
26
27template <typename Box>
28struct is_bounding_geometry<Box, box_tag>
29{
30 static const bool value = true;
31};
32
33}}}} // namespave boost::geometry::index::detail
34
35#endif // BOOST_GEOMETRY_INDEX_DETAIL_IS_BOUNDING_GEOMETRY_HPP
36

source code of boost/boost/geometry/index/detail/is_bounding_geometry.hpp