File indexing completed on 2025-01-18 09:36:23
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_GEOMETRY_SRS_PROJECTIONS_ESRI_PARAMS_HPP
0011 #define BOOST_GEOMETRY_SRS_PROJECTIONS_ESRI_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 esri
0027 {
0028 explicit esri(int c)
0029 : code(c)
0030 {}
0031
0032 int code;
0033 };
0034
0035
0036 template <int Code>
0037 struct static_esri
0038 {
0039 static const int code = Code;
0040 };
0041
0042
0043 }
0044
0045
0046 }}
0047
0048 #endif