// Boost.Geometry (aka GGL, Generic Geometry Library) test file // // Copyright Barend Gehrels 2007-2009, Geodan, Amsterdam, the Netherlands // Copyright Bruno Lalande 2008, 2009 // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include #include #include template void test_reversed() { BOOST_CHECK_EQUAL((bg::reverse_dispatch::type::value), Expected); } template void test_all() { test_reversed(); test_reversed, false>(); test_reversed, P, true>(); test_reversed, P, true>(); test_reversed, bg::model::linear_ring

, false>(); test_reversed, bg::model::linestring

, true>(); } template void test_mixed() { test_reversed(); } int test_main(int, char* []) { test_all >(); test_mixed < bg::model::point, bg::model::point > >(); test_mixed < bg::model::point >, bg::model::point > >(); return 0; }