summaryrefslogtreecommitdiff
path: root/boost/geometry/geometries/concepts
diff options
context:
space:
mode:
Diffstat (limited to 'boost/geometry/geometries/concepts')
-rw-r--r--boost/geometry/geometries/concepts/box_concept.hpp4
-rw-r--r--boost/geometry/geometries/concepts/check.hpp40
-rw-r--r--boost/geometry/geometries/concepts/linestring_concept.hpp8
-rw-r--r--boost/geometry/geometries/concepts/multi_linestring_concept.hpp8
-rw-r--r--boost/geometry/geometries/concepts/multi_point_concept.hpp8
-rw-r--r--boost/geometry/geometries/concepts/multi_polygon_concept.hpp8
-rw-r--r--boost/geometry/geometries/concepts/point_concept.hpp4
-rw-r--r--boost/geometry/geometries/concepts/polygon_concept.hpp12
-rw-r--r--boost/geometry/geometries/concepts/ring_concept.hpp8
-rw-r--r--boost/geometry/geometries/concepts/segment_concept.hpp8
10 files changed, 54 insertions, 54 deletions
diff --git a/boost/geometry/geometries/concepts/box_concept.hpp b/boost/geometry/geometries/concepts/box_concept.hpp
index ea0d84cf31..816a90f63e 100644
--- a/boost/geometry/geometries/concepts/box_concept.hpp
+++ b/boost/geometry/geometries/concepts/box_concept.hpp
@@ -26,7 +26,7 @@
#include <boost/geometry/core/point_type.hpp>
-namespace boost { namespace geometry { namespace concept
+namespace boost { namespace geometry { namespace concepts
{
@@ -130,7 +130,7 @@ public :
#endif
};
-}}} // namespace boost::geometry::concept
+}}} // namespace boost::geometry::concepts
#endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_BOX_CONCEPT_HPP
diff --git a/boost/geometry/geometries/concepts/check.hpp b/boost/geometry/geometries/concepts/check.hpp
index 07ef84f4a4..f609d5f131 100644
--- a/boost/geometry/geometries/concepts/check.hpp
+++ b/boost/geometry/geometries/concepts/check.hpp
@@ -71,108 +71,108 @@ struct check : not_implemented<GeometryTag>
template <typename Geometry>
struct check<Geometry, point_tag, true>
- : detail::concept_check::check<concept::ConstPoint<Geometry> >
+ : detail::concept_check::check<concepts::ConstPoint<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, point_tag, false>
- : detail::concept_check::check<concept::Point<Geometry> >
+ : detail::concept_check::check<concepts::Point<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, linestring_tag, true>
- : detail::concept_check::check<concept::ConstLinestring<Geometry> >
+ : detail::concept_check::check<concepts::ConstLinestring<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, linestring_tag, false>
- : detail::concept_check::check<concept::Linestring<Geometry> >
+ : detail::concept_check::check<concepts::Linestring<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, ring_tag, true>
- : detail::concept_check::check<concept::ConstRing<Geometry> >
+ : detail::concept_check::check<concepts::ConstRing<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, ring_tag, false>
- : detail::concept_check::check<concept::Ring<Geometry> >
+ : detail::concept_check::check<concepts::Ring<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, polygon_tag, true>
- : detail::concept_check::check<concept::ConstPolygon<Geometry> >
+ : detail::concept_check::check<concepts::ConstPolygon<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, polygon_tag, false>
- : detail::concept_check::check<concept::Polygon<Geometry> >
+ : detail::concept_check::check<concepts::Polygon<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, box_tag, true>
- : detail::concept_check::check<concept::ConstBox<Geometry> >
+ : detail::concept_check::check<concepts::ConstBox<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, box_tag, false>
- : detail::concept_check::check<concept::Box<Geometry> >
+ : detail::concept_check::check<concepts::Box<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, segment_tag, true>
- : detail::concept_check::check<concept::ConstSegment<Geometry> >
+ : detail::concept_check::check<concepts::ConstSegment<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, segment_tag, false>
- : detail::concept_check::check<concept::Segment<Geometry> >
+ : detail::concept_check::check<concepts::Segment<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, multi_point_tag, true>
- : detail::concept_check::check<concept::ConstMultiPoint<Geometry> >
+ : detail::concept_check::check<concepts::ConstMultiPoint<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, multi_point_tag, false>
- : detail::concept_check::check<concept::MultiPoint<Geometry> >
+ : detail::concept_check::check<concepts::MultiPoint<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, multi_linestring_tag, true>
- : detail::concept_check::check<concept::ConstMultiLinestring<Geometry> >
+ : detail::concept_check::check<concepts::ConstMultiLinestring<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, multi_linestring_tag, false>
- : detail::concept_check::check<concept::MultiLinestring<Geometry> >
+ : detail::concept_check::check<concepts::MultiLinestring<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, multi_polygon_tag, true>
- : detail::concept_check::check<concept::ConstMultiPolygon<Geometry> >
+ : detail::concept_check::check<concepts::ConstMultiPolygon<Geometry> >
{};
template <typename Geometry>
struct check<Geometry, multi_polygon_tag, false>
- : detail::concept_check::check<concept::MultiPolygon<Geometry> >
+ : detail::concept_check::check<concepts::MultiPolygon<Geometry> >
{};
@@ -182,7 +182,7 @@ struct check<Geometry, multi_polygon_tag, false>
-namespace concept
+namespace concepts
{
@@ -234,7 +234,7 @@ inline void check_concepts_and_equal_dimensions()
}
-} // namespace concept
+} // namespace concepts
}} // namespace boost::geometry
diff --git a/boost/geometry/geometries/concepts/linestring_concept.hpp b/boost/geometry/geometries/concepts/linestring_concept.hpp
index 091336fe30..6775239d05 100644
--- a/boost/geometry/geometries/concepts/linestring_concept.hpp
+++ b/boost/geometry/geometries/concepts/linestring_concept.hpp
@@ -28,7 +28,7 @@
-namespace boost { namespace geometry { namespace concept
+namespace boost { namespace geometry { namespace concepts
{
@@ -76,7 +76,7 @@ class Linestring
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename point_type<Geometry>::type point_type;
- BOOST_CONCEPT_ASSERT( (concept::Point<point_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::Point<point_type>) );
BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
public :
@@ -105,7 +105,7 @@ class ConstLinestring
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename point_type<Geometry>::type point_type;
- BOOST_CONCEPT_ASSERT( (concept::ConstPoint<point_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::ConstPoint<point_type>) );
//BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
// Relaxed the concept.
BOOST_CONCEPT_ASSERT( (boost::ForwardRangeConcept<Geometry>) );
@@ -119,7 +119,7 @@ public :
#endif
};
-}}} // namespace boost::geometry::concept
+}}} // namespace boost::geometry::concepts
#endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_LINESTRING_CONCEPT_HPP
diff --git a/boost/geometry/geometries/concepts/multi_linestring_concept.hpp b/boost/geometry/geometries/concepts/multi_linestring_concept.hpp
index f13f7ac7e8..7931670903 100644
--- a/boost/geometry/geometries/concepts/multi_linestring_concept.hpp
+++ b/boost/geometry/geometries/concepts/multi_linestring_concept.hpp
@@ -24,7 +24,7 @@
#include <boost/geometry/geometries/concepts/linestring_concept.hpp>
-namespace boost { namespace geometry { namespace concept
+namespace boost { namespace geometry { namespace concepts
{
@@ -45,7 +45,7 @@ class MultiLinestring
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename boost::range_value<Geometry>::type linestring_type;
- BOOST_CONCEPT_ASSERT( (concept::Linestring<linestring_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::Linestring<linestring_type>) );
BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
@@ -73,7 +73,7 @@ class ConstMultiLinestring
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename boost::range_value<Geometry>::type linestring_type;
- BOOST_CONCEPT_ASSERT( (concept::ConstLinestring<linestring_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::ConstLinestring<linestring_type>) );
BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
@@ -85,7 +85,7 @@ public :
#endif
};
-}}} // namespace boost::geometry::concept
+}}} // namespace boost::geometry::concepts
#endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_MULTI_LINESTRING_CONCEPT_HPP
diff --git a/boost/geometry/geometries/concepts/multi_point_concept.hpp b/boost/geometry/geometries/concepts/multi_point_concept.hpp
index 81c087166f..9e205f1635 100644
--- a/boost/geometry/geometries/concepts/multi_point_concept.hpp
+++ b/boost/geometry/geometries/concepts/multi_point_concept.hpp
@@ -24,7 +24,7 @@
#include <boost/geometry/geometries/concepts/point_concept.hpp>
-namespace boost { namespace geometry { namespace concept
+namespace boost { namespace geometry { namespace concepts
{
@@ -44,7 +44,7 @@ class MultiPoint
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename boost::range_value<Geometry>::type point_type;
- BOOST_CONCEPT_ASSERT( (concept::Point<point_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::Point<point_type>) );
BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
@@ -72,7 +72,7 @@ class ConstMultiPoint
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename boost::range_value<Geometry>::type point_type;
- BOOST_CONCEPT_ASSERT( (concept::ConstPoint<point_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::ConstPoint<point_type>) );
BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
@@ -84,7 +84,7 @@ public :
#endif
};
-}}} // namespace boost::geometry::concept
+}}} // namespace boost::geometry::concepts
#endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_MULTI_POINT_CONCEPT_HPP
diff --git a/boost/geometry/geometries/concepts/multi_polygon_concept.hpp b/boost/geometry/geometries/concepts/multi_polygon_concept.hpp
index b13d330f3c..63de6e5bfc 100644
--- a/boost/geometry/geometries/concepts/multi_polygon_concept.hpp
+++ b/boost/geometry/geometries/concepts/multi_polygon_concept.hpp
@@ -23,7 +23,7 @@
#include <boost/geometry/geometries/concepts/polygon_concept.hpp>
-namespace boost { namespace geometry { namespace concept
+namespace boost { namespace geometry { namespace concepts
{
@@ -44,7 +44,7 @@ class MultiPolygon
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename boost::range_value<Geometry>::type polygon_type;
- BOOST_CONCEPT_ASSERT( (concept::Polygon<polygon_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::Polygon<polygon_type>) );
BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
@@ -72,7 +72,7 @@ class ConstMultiPolygon
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename boost::range_value<Geometry>::type polygon_type;
- BOOST_CONCEPT_ASSERT( (concept::ConstPolygon<polygon_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::ConstPolygon<polygon_type>) );
BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
@@ -85,7 +85,7 @@ public :
};
-}}} // namespace boost::geometry::concept
+}}} // namespace boost::geometry::concepts
#endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_MULTI_POLYGON_CONCEPT_HPP
diff --git a/boost/geometry/geometries/concepts/point_concept.hpp b/boost/geometry/geometries/concepts/point_concept.hpp
index 52f8d038ea..4001f4e06b 100644
--- a/boost/geometry/geometries/concepts/point_concept.hpp
+++ b/boost/geometry/geometries/concepts/point_concept.hpp
@@ -30,7 +30,7 @@
-namespace boost { namespace geometry { namespace concept
+namespace boost { namespace geometry { namespace concepts
{
/*!
@@ -187,6 +187,6 @@ public:
#endif
};
-}}} // namespace boost::geometry::concept
+}}} // namespace boost::geometry::concepts
#endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_POINT_CONCEPT_HPP
diff --git a/boost/geometry/geometries/concepts/polygon_concept.hpp b/boost/geometry/geometries/concepts/polygon_concept.hpp
index b478a2274e..58b780009b 100644
--- a/boost/geometry/geometries/concepts/polygon_concept.hpp
+++ b/boost/geometry/geometries/concepts/polygon_concept.hpp
@@ -27,7 +27,7 @@
#include <boost/geometry/geometries/concepts/ring_concept.hpp>
-namespace boost { namespace geometry { namespace concept
+namespace boost { namespace geometry { namespace concepts
{
/*!
@@ -48,8 +48,8 @@ class Polygon
typedef typename point_type<PolygonType>::type point_type;
typedef typename ring_type<PolygonType>::type ring_type;
- BOOST_CONCEPT_ASSERT( (concept::Point<point_type>) );
- BOOST_CONCEPT_ASSERT( (concept::Ring<ring_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::Point<point_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::Ring<ring_type>) );
//BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<interior_type>) );
@@ -101,8 +101,8 @@ class ConstPolygon
typedef typename point_type<const_polygon_type>::type point_type;
typedef typename ring_type<const_polygon_type>::type ring_type;
- BOOST_CONCEPT_ASSERT( (concept::ConstPoint<point_type>) );
- BOOST_CONCEPT_ASSERT( (concept::ConstRing<ring_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::ConstPoint<point_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::ConstRing<ring_type>) );
////BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<interior_type>) );
@@ -130,6 +130,6 @@ public:
#endif
};
-}}} // namespace boost::geometry::concept
+}}} // namespace boost::geometry::concepts
#endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_POLYGON_CONCEPT_HPP
diff --git a/boost/geometry/geometries/concepts/ring_concept.hpp b/boost/geometry/geometries/concepts/ring_concept.hpp
index 02a36c96f1..d75d428438 100644
--- a/boost/geometry/geometries/concepts/ring_concept.hpp
+++ b/boost/geometry/geometries/concepts/ring_concept.hpp
@@ -27,7 +27,7 @@
#include <boost/geometry/geometries/concepts/point_concept.hpp>
-namespace boost { namespace geometry { namespace concept
+namespace boost { namespace geometry { namespace concepts
{
@@ -52,7 +52,7 @@ class Ring
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename point_type<Geometry>::type point_type;
- BOOST_CONCEPT_ASSERT( (concept::Point<point_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::Point<point_type>) );
BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
public :
@@ -81,7 +81,7 @@ class ConstRing
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename point_type<Geometry>::type point_type;
- BOOST_CONCEPT_ASSERT( (concept::ConstPoint<point_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::ConstPoint<point_type>) );
BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
@@ -93,7 +93,7 @@ public :
#endif
};
-}}} // namespace boost::geometry::concept
+}}} // namespace boost::geometry::concepts
#endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_RING_CONCEPT_HPP
diff --git a/boost/geometry/geometries/concepts/segment_concept.hpp b/boost/geometry/geometries/concepts/segment_concept.hpp
index 8d2d300153..6a1c80486f 100644
--- a/boost/geometry/geometries/concepts/segment_concept.hpp
+++ b/boost/geometry/geometries/concepts/segment_concept.hpp
@@ -23,7 +23,7 @@
#include <boost/geometry/core/point_type.hpp>
-namespace boost { namespace geometry { namespace concept
+namespace boost { namespace geometry { namespace concepts
{
@@ -51,7 +51,7 @@ class Segment
#ifndef DOXYGEN_NO_CONCEPT_MEMBERS
typedef typename point_type<Geometry>::type point_type;
- BOOST_CONCEPT_ASSERT( (concept::Point<point_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::Point<point_type>) );
template <size_t Index, size_t Dimension, size_t DimensionCount>
@@ -96,7 +96,7 @@ class ConstSegment
typedef typename point_type<Geometry>::type point_type;
typedef typename coordinate_type<Geometry>::type coordinate_type;
- BOOST_CONCEPT_ASSERT( (concept::ConstPoint<point_type>) );
+ BOOST_CONCEPT_ASSERT( (concepts::ConstPoint<point_type>) );
template <size_t Index, size_t Dimension, size_t DimensionCount>
@@ -129,7 +129,7 @@ public :
};
-}}} // namespace boost::geometry::concept
+}}} // namespace boost::geometry::concepts
#endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_SEGMENT_CONCEPT_HPP