mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-12 00:02:09 +00:00
Some of the rtree member types and methods made private unless BOOST_GEOMETRY_INDEX_ENABLE_DEBUG_INTERFACE is defined. [SVN r81355]
22 lines
662 B
C++
22 lines
662 B
C++
// Boost.Geometry Index
|
|
// Test
|
|
|
|
// Copyright (c) 2011-2012 Adam Wulkiewicz, Lodz, Poland.
|
|
|
|
// Use, modification and distribution is subject to the Boost Software License,
|
|
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#ifndef GEOMETRY_TEST_GEOMETRY_INDEX_TEST_COMMON_HPP
|
|
#define GEOMETRY_TEST_GEOMETRY_INDEX_TEST_COMMON_HPP
|
|
|
|
#include <boost/geometry.hpp>
|
|
#define BOOST_GEOMETRY_INDEX_ENABLE_DEBUG_INTERFACE
|
|
#include <boost/geometry/extensions/index/rtree/rtree.hpp>
|
|
|
|
#include <geometry_test_common.hpp>
|
|
|
|
namespace bgi = boost::geometry::index;
|
|
|
|
#endif // GEOMETRY_TEST_GEOMETRY_INDEX_TEST_COMMON_HPP
|