]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/geometry/strategies/io.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / geometry / strategies / io.hpp
CommitLineData
92f5a8d4
TL
1// Boost.Geometry
2
20effc67 3// Copyright (c) 2019-2020, Oracle and/or its affiliates.
92f5a8d4
TL
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
20effc67 14#include <boost/geometry/core/static_assert.hpp>
92f5a8d4
TL
15
16
17namespace boost { namespace geometry
18{
19
20namespace strategy { namespace io
21{
22
23namespace services
24{
25
26template <typename CSTag>
27struct default_strategy
28{
20effc67
TL
29 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
30 "Not implemented for this coordinate system.",
31 CSTag);
92f5a8d4
TL
32};
33
34} // namespace services
35
36}} // namespace strategy::io
37
38}} // namespace boost::geometry
39
40#endif // BOOST_GEOMETRY_EXTENSIONS_STRATEGIES_IO_HPP