1 // Boost.Geometry 2 3 // Copyright (c) 2018-2019, Oracle and/or its affiliates. 4 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle 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 BOOST_GEOMETRY_SRS_SHARED_GRIDS_HPP 11 #define BOOST_GEOMETRY_SRS_SHARED_GRIDS_HPP 12 13 14 #include <boost/geometry/srs/shared_grids_boost.hpp> 15 16 17 namespace boost { namespace geometry 18 { 19 20 namespace srs 21 { 22 23 24 typedef shared_grids_boost shared_grids; 25 26 27 } // namespace srs 28 29 30 }} // namespace boost::geometry 31 32 33 #endif // BOOST_GEOMETRY_SRS_SHARED_GRIDS_HPP 34