Warning, file /include/boost/geometry/strategies/geographic/side_thomas.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef BOOST_GEOMETRY_STRATEGIES_GEOGRAPHIC_SIDE_THOMAS_HPP
0015 #define BOOST_GEOMETRY_STRATEGIES_GEOGRAPHIC_SIDE_THOMAS_HPP
0016
0017
0018 #include <boost/geometry/strategies/geographic/side.hpp>
0019
0020
0021 namespace boost { namespace geometry
0022 {
0023
0024
0025 namespace strategy { namespace side
0026 {
0027
0028
0029
0030
0031
0032
0033
0034
0035 template
0036 <
0037 typename Spheroid = srs::spheroid<double>,
0038 typename CalculationType = void
0039 >
0040 class thomas
0041 : public side::geographic<strategy::thomas, Spheroid, CalculationType>
0042 {
0043 typedef side::geographic<strategy::thomas, Spheroid, CalculationType> base_t;
0044
0045 public:
0046 thomas()
0047 {}
0048
0049 explicit thomas(Spheroid const& model)
0050 : base_t(model)
0051 {}
0052 };
0053
0054 }}
0055
0056
0057 }}
0058
0059
0060 #endif