|
||||
File indexing completed on 2025-01-18 09:35:55
0001 // Boost.Geometry 0002 0003 // Copyright (c) 2017-2022, Oracle and/or its affiliates. 0004 // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle 0005 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle 0006 0007 // Use, modification and distribution is subject to the Boost Software License, 0008 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 0009 // http://www.boost.org/LICENSE_1_0.txt) 0010 0011 #ifndef BOOST_GEOMETRY_SRS_PROJECTIONS_EPSG_PARAMS_HPP 0012 #define BOOST_GEOMETRY_SRS_PROJECTIONS_EPSG_PARAMS_HPP 0013 0014 0015 #include <string> 0016 0017 #include <boost/geometry/srs/spheroid.hpp> 0018 0019 0020 namespace boost { namespace geometry 0021 { 0022 0023 namespace srs 0024 { 0025 0026 0027 struct epsg 0028 { 0029 explicit epsg(int c) 0030 : code(c) 0031 {} 0032 0033 int code; 0034 }; 0035 0036 0037 template <int Code> 0038 struct static_epsg 0039 { 0040 static const int code = Code; 0041 }; 0042 0043 0044 } // namespace srs 0045 0046 0047 }} // namespace boost::geometry 0048 0049 #endif // BOOST_GEOMETRY_SRS_PROJECTIONS_EPSG_PARAMS_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |