• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Boost.Geometry (aka GGL, Generic Geometry Library)
2 // Unit Test
3 
4 // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
5 // Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
6 // Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
7 
8 // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
9 // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
10 
11 // Use, modification and distribution is subject to the Boost Software License,
12 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
13 // http://www.boost.org/LICENSE_1_0.txt)
14 
15 #include <boost/tuple/tuple.hpp>
16 
17 #include <boost/geometry/core/cs.hpp>
18 #include <boost/geometry/geometries/register/point.hpp>
19 
20 #include "function_requiring_a_point.hpp"
21 
22 struct point: public boost::tuple<float, float>
23 {
24 };
25 
BOOST_GEOMETRY_REGISTER_POINT_2D(point,float,cs::cartesian,get<0> (),get<1> ())26 BOOST_GEOMETRY_REGISTER_POINT_2D(point, float, cs::cartesian, get<0>(), get<1>())
27 
28 int main()
29 {
30     point p1;
31     point const p2 = point();
32     test::function_requiring_a_point(p1, p2);
33     return 0;
34 }
35