geometry_index_test_common.hpp 855 B

12345678910111213141516171819202122232425262728
  1. // Boost.Geometry Index
  2. // Test
  3. // Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
  4. // Use, modification and distribution is subject to the Boost Software License,
  5. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. #ifndef GEOMETRY_TEST_GEOMETRY_INDEX_TEST_COMMON_HPP
  8. #define GEOMETRY_TEST_GEOMETRY_INDEX_TEST_COMMON_HPP
  9. #if defined(_MSC_VER)
  10. //#pragma warning (disable : 4996) // deprecated functions
  11. //#pragma warning (disable : 4100) // unreferenced formal parameter
  12. //#pragma warning (disable : 4127) // conditional expression is constant
  13. #endif // _MSC_VER
  14. #include <boost/geometry.hpp>
  15. #include <geometry_test_common.hpp>
  16. namespace boost { namespace geometry { namespace index {}}}
  17. namespace bgi = boost::geometry::index;
  18. #endif // GEOMETRY_TEST_GEOMETRY_INDEX_TEST_COMMON_HPP