Imported Upstream version 1.72.0
[platform/upstream/boost.git] / boost / geometry / strategies / io.hpp
1 // Boost.Geometry
2
3 // Copyright (c) 2019, 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/mpl/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_MPL_ASSERT_MSG
30         (
31             false, NOT_IMPLEMENTED_FOR_THIS_CS
32             , (types<CSTag>)
33         );
34 };
35
36 } // namespace services
37
38 }} // namespace strategy::io
39
40 }} // namespace boost::geometry
41
42 #endif // BOOST_GEOMETRY_EXTENSIONS_STRATEGIES_IO_HPP