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