Merge pull request #97 from mkaravel/fix/support_status

Fix/support status
This commit is contained in:
Adam Wulkiewicz
2014-07-17 02:36:06 +02:00

View File

@@ -34,6 +34,8 @@
#include <boost/geometry/algorithms/equals.hpp>
#include <boost/geometry/algorithms/expand.hpp>
#include <boost/geometry/algorithms/for_each.hpp>
#include <boost/geometry/algorithms/is_simple.hpp>
#include <boost/geometry/algorithms/is_valid.hpp>
#include <boost/geometry/algorithms/length.hpp>
#include <boost/geometry/algorithms/num_geometries.hpp>
#include <boost/geometry/algorithms/num_interior_rings.hpp>
@@ -121,6 +123,8 @@ DECLARE_BINARY_ALGORITHM(equals)
DECLARE_BINARY_ALGORITHM(expand)
DECLARE_UNARY_ALGORITHM(for_each_point)
DECLARE_UNARY_ALGORITHM(for_each_segment)
DECLARE_UNARY_ALGORITHM(is_simple)
DECLARE_UNARY_ALGORITHM(is_valid)
DECLARE_UNARY_ALGORITHM(length)
DECLARE_UNARY_ALGORITHM(num_geometries)
DECLARE_UNARY_ALGORITHM(num_interior_rings)
@@ -257,10 +261,12 @@ void support_status()
test_binary_algorithm<expand, all_types, all_types, OutputFactory>("expand");
test_unary_algorithm<for_each_point, all_types, OutputFactory>("for_each_point");
test_unary_algorithm<for_each_segment, all_types, OutputFactory>("for_each_segment");
test_unary_algorithm<is_simple, all_types, OutputFactory>("is_simple");
test_unary_algorithm<is_valid, all_types, OutputFactory>("is_valid");
test_unary_algorithm<length, all_types, OutputFactory>("length");
test_unary_algorithm<num_geometries, all_types, OutputFactory>("num_geometries");
test_unary_algorithm<num_interior_rings, all_types, OutputFactory>("num_interior_rings");
test_unary_algorithm<num_interior_rings, all_types, OutputFactory>("num_points");
test_unary_algorithm<num_points, all_types, OutputFactory>("num_points");
test_binary_algorithm<overlaps, all_types, all_types, OutputFactory>("overlaps");
test_unary_algorithm<perimeter, all_types, OutputFactory>("perimeter");
test_unary_algorithm<reverse, all_types, OutputFactory>("reverse");