]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/geometry/strategies/io.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / geometry / strategies / io.hpp
1 // Boost.Geometry
2
3 // Copyright (c) 2019-2020, Oracle and/or its affiliates.
4
5 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
6
7 // Licensed under the Boost Software License version 1.0.
8 // http://www.boost.org/users/license.html
9
10 #ifndef BOOST_GEOMETRY_EXTENSIONS_STRATEGIES_IO_HPP
11 #define BOOST_GEOMETRY_EXTENSIONS_STRATEGIES_IO_HPP
12
13
14 #include <boost/geometry/core/static_assert.hpp>
15
16
17 namespace boost { namespace geometry
18 {
19
20 namespace strategy { namespace io
21 {
22
23 namespace services
24 {
25
26 template <typename CSTag>
27 struct default_strategy
28 {
29 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
30 "Not implemented for this coordinate system.",
31 CSTag);
32 };
33
34 } // namespace services
35
36 }} // namespace strategy::io
37
38 }} // namespace boost::geometry
39
40 #endif // BOOST_GEOMETRY_EXTENSIONS_STRATEGIES_IO_HPP