• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Boost.Geometry (aka GGL, Generic Geometry Library)
2 // Unit Test
3 
4 // Copyright (c) 2014, Oracle and/or its affiliates.
5 
6 // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
7 
8 // Licensed under the Boost Software License version 1.0.
9 // http://www.boost.org/users/license.html
10 
11 #include <test_geometries/custom_lon_lat_point.hpp>
12 
13 #include <boost/geometry/core/cs.hpp>
14 #include <boost/geometry/geometries/concepts/check.hpp>
15 
16 
17 namespace bg = boost::geometry;
18 
19 
main()20 int main()
21 {
22     bg::concepts::check
23         <
24             rw_lon_lat_point<double, bg::cs::spherical_equatorial<double> >
25         >();
26 
27     return 0;
28 }
29