12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef BOOST_GEOMETRY_SRS_PROJECTIONS_EPSG_PARAMS_HPP
- #define BOOST_GEOMETRY_SRS_PROJECTIONS_EPSG_PARAMS_HPP
- #include <string>
- #include <boost/geometry/srs/spheroid.hpp>
- namespace boost { namespace geometry
- {
- namespace srs
- {
- struct epsg
- {
- explicit epsg(int c)
- : code(c)
- {}
- int code;
- };
- template <int Code>
- struct static_epsg
- {
- static const int code = Code;
- };
- }
- }}
- #endif
|