Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Boost.Geometry
0002 
0003 // Copyright (c) 2017-2018, Oracle and/or its affiliates.
0004 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0005 
0006 // Use, modification and distribution is subject to the Boost Software License,
0007 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0008 // http://www.boost.org/LICENSE_1_0.txt)
0009 
0010 #ifndef BOOST_GEOMETRY_PROJECTIONS_SRID_TRAITS_HPP
0011 #define BOOST_GEOMETRY_PROJECTIONS_SRID_TRAITS_HPP
0012 
0013 
0014 #define BOOST_GEOMETRY_PROJECTIONS_DETAIL_SRID_TRAITS_BEG(AUTH, CODE) \
0015 template<> \
0016 struct AUTH##_traits<CODE> \
0017 { \
0018     typedef \
0019 
0020 #define BOOST_GEOMETRY_PROJECTIONS_DETAIL_SRID_TRAITS_MID() \
0021     parameters_type; \
0022     static inline parameters_type parameters() \
0023     { \
0024         return parameters_type \
0025 
0026 #define BOOST_GEOMETRY_PROJECTIONS_DETAIL_SRID_TRAITS_END() \
0027         ; \
0028     } \
0029 }; \
0030 
0031 
0032 #endif // BOOST_GEOMETRY_PROJECTIONS_SRID_TRAITS_HPP
0033