Integrated unique into support_status.

[SVN r80246]
This commit is contained in:
Bruno Lalande 2012-08-26 23:38:33 +00:00
parent 7f5b0233e6
commit 2801bbd383
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,13 @@
[heading Supported geometries]
[table
[[Geometry][Status]]
[[Point][ [$img/ok.png] ]]
[[Segment][ [$img/ok.png] ]]
[[Box][ [$img/ok.png] ]]
[[Linestring][ [$img/ok.png] ]]
[[Ring][ [$img/ok.png] ]]
[[Polygon][ [$img/ok.png] ]]
[[MultiPoint][ [$img/ok.png] ]]
[[MultiLinestring][ [$img/ok.png] ]]
[[MultiPolygon][ [$img/ok.png] ]]
]

View File

@ -35,6 +35,7 @@
#include <boost/geometry/algorithms/overlaps.hpp>
#include <boost/geometry/algorithms/simplify.hpp>
#include <boost/geometry/algorithms/transform.hpp>
#include <boost/geometry/algorithms/unique.hpp>
#include <boost/geometry/multi/algorithms/append.hpp>
#include <boost/geometry/multi/algorithms/area.hpp>
#include <boost/geometry/multi/algorithms/clear.hpp>
@ -46,6 +47,7 @@
#include <boost/geometry/multi/algorithms/equals.hpp>
#include <boost/geometry/multi/algorithms/simplify.hpp>
#include <boost/geometry/multi/algorithms/transform.hpp>
#include <boost/geometry/multi/algorithms/unique.hpp>
#include <boost/geometry/strategies/strategies.hpp>
#include "text_outputter.hpp"
@ -101,6 +103,7 @@ DECLARE_BINARY_ALGORITHM(expand)
DECLARE_BINARY_ALGORITHM(overlaps)
DECLARE_UNARY_ALGORITHM(simplify)
DECLARE_BINARY_ALGORITHM(transform)
DECLARE_UNARY_ALGORITHM(unique)
DECLARE_BINARY_ALGORITHM(within)
@ -225,6 +228,7 @@ void support_status()
test_binary_algorithm<overlaps, all_types, all_types, OutputFactory>("overlaps");
test_unary_algorithm<simplify, all_types, OutputFactory>("simplify");
test_binary_algorithm<transform, all_types, all_types, OutputFactory>("transform");
test_unary_algorithm<unique, all_types, OutputFactory>("unique");
test_binary_algorithm<within, all_types, all_types, OutputFactory>("within");
}