Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:36:50

0001 // Boost.Geometry (aka GGL, Generic Geometry Library)
0002 
0003 // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
0004 // Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
0005 // Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
0006 
0007 // This file was modified by Oracle on 2020.
0008 // Modifications copyright (c) 2020, Oracle and/or its affiliates.
0009 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0010 
0011 // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
0012 // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
0013 
0014 // Use, modification and distribution is subject to the Boost Software License,
0015 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0016 // http://www.boost.org/LICENSE_1_0.txt)
0017 
0018 #ifndef BOOST_GEOMETRY_STRATEGIES_TRANSFORM_HPP
0019 #define BOOST_GEOMETRY_STRATEGIES_TRANSFORM_HPP
0020 
0021 #include <cstddef>
0022 
0023 #include <boost/geometry/core/static_assert.hpp>
0024 
0025 #include <boost/geometry/strategies/tags.hpp>
0026 
0027 namespace boost { namespace geometry
0028 {
0029 
0030 namespace strategy { namespace transform { namespace services
0031 {
0032 
0033 /*!
0034     \brief Traits class binding a transformation strategy to a coordinate system
0035     \ingroup transform
0036     \details Can be specialized
0037     - per coordinate system family (tag)
0038     - per coordinate system (or groups of them)
0039     - per dimension
0040     - per point type
0041     \tparam CoordinateSystemTag 1,2 coordinate system tags
0042     \tparam CoordinateSystem 1,2 coordinate system
0043     \tparam D 1, 2 dimension
0044     \tparam Point 1, 2 point type
0045  */
0046 template
0047 <
0048     typename CoordinateSystemTag1, typename CoordinateSystemTag2,
0049     typename CoordinateSystem1, typename CoordinateSystem2,
0050     std::size_t Dimension1, std::size_t Dimension2,
0051     typename Point1, typename Point2
0052 >
0053 struct default_strategy
0054 {
0055     BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0056         "Not implemented for these Point types.",
0057         Point1, Point2);
0058 };
0059 
0060 }}} // namespace strategy::transform::services
0061 
0062 
0063 }} // namespace boost::geometry
0064 
0065 #endif // BOOST_GEOMETRY_STRATEGIES_TRANSFORM_HPP