Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Boost.Geometry
0002 
0003 // Copyright (c) 2017, 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_SRS_PROJECTIONS_IAU2000_PARAMS_HPP
0011 #define BOOST_GEOMETRY_SRS_PROJECTIONS_IAU2000_PARAMS_HPP
0012 
0013 
0014 #include <string>
0015 
0016 #include <boost/geometry/srs/spheroid.hpp>
0017 
0018 
0019 namespace boost { namespace geometry
0020 {
0021 
0022 namespace srs
0023 {
0024 
0025 
0026 struct iau2000
0027 {
0028     explicit iau2000(int c)
0029         : code(c)
0030     {}
0031 
0032     int code;
0033 };
0034 
0035 
0036 template <int Code>
0037 struct static_iau2000
0038 {
0039     static const int code = Code;
0040 };
0041 
0042 
0043 } // namespace srs
0044 
0045 
0046 }} // namespace boost::geometry
0047 
0048 #endif // BOOST_GEOMETRY_SRS_PROJECTIONS_IAU2000_PARAMS_HPP