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/point.hpp> 15 #include <boost/geometry/geometries/concepts/check.hpp> 16 17 18 namespace bg = boost::geometry; 19 20 main()21int main() 22 { 23 bg::model::point<double, 2, bg::cs::spherical_equatorial<double> > p; 24 25 return 0; 26 } 27