Chris@102
|
1 // Boost.Geometry (aka GGL, Generic Geometry Library)
|
Chris@102
|
2
|
Chris@102
|
3 // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands.
|
Chris@102
|
4 // Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
|
Chris@102
|
5 // Copyright (c) 2009-2012 Mateusz Loskot, London, UK.
|
Chris@102
|
6
|
Chris@102
|
7 // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
|
Chris@102
|
8 // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
|
Chris@102
|
9
|
Chris@102
|
10 // Use, modification and distribution is subject to the Boost Software License,
|
Chris@102
|
11 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
Chris@102
|
12 // http://www.boost.org/LICENSE_1_0.txt)
|
Chris@102
|
13
|
Chris@102
|
14
|
Chris@102
|
15 #ifndef BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_MULTI_LINESTRING_CONCEPT_HPP
|
Chris@102
|
16 #define BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_MULTI_LINESTRING_CONCEPT_HPP
|
Chris@102
|
17
|
Chris@102
|
18
|
Chris@102
|
19 #include <boost/concept_check.hpp>
|
Chris@102
|
20 #include <boost/range/concepts.hpp>
|
Chris@102
|
21 #include <boost/range/metafunctions.hpp>
|
Chris@102
|
22
|
Chris@102
|
23
|
Chris@102
|
24 #include <boost/geometry/geometries/concepts/linestring_concept.hpp>
|
Chris@102
|
25
|
Chris@102
|
26
|
Chris@102
|
27 namespace boost { namespace geometry { namespace concept
|
Chris@102
|
28 {
|
Chris@102
|
29
|
Chris@102
|
30
|
Chris@102
|
31 /*!
|
Chris@102
|
32 \brief multi-linestring concept
|
Chris@102
|
33 \ingroup concepts
|
Chris@102
|
34 \par Formal definition:
|
Chris@102
|
35 The multi linestring concept is defined as following:
|
Chris@102
|
36 - there must be a specialization of traits::tag defining multi_linestring_tag as
|
Chris@102
|
37 type
|
Chris@102
|
38 - it must behave like a Boost.Range
|
Chris@102
|
39 - its range value must fulfil the Linestring concept
|
Chris@102
|
40
|
Chris@102
|
41 */
|
Chris@102
|
42 template <typename Geometry>
|
Chris@102
|
43 class MultiLinestring
|
Chris@102
|
44 {
|
Chris@102
|
45 #ifndef DOXYGEN_NO_CONCEPT_MEMBERS
|
Chris@102
|
46 typedef typename boost::range_value<Geometry>::type linestring_type;
|
Chris@102
|
47
|
Chris@102
|
48 BOOST_CONCEPT_ASSERT( (concept::Linestring<linestring_type>) );
|
Chris@102
|
49 BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
|
Chris@102
|
50
|
Chris@102
|
51
|
Chris@102
|
52 public :
|
Chris@102
|
53
|
Chris@102
|
54 BOOST_CONCEPT_USAGE(MultiLinestring)
|
Chris@102
|
55 {
|
Chris@102
|
56 Geometry* mls = 0;
|
Chris@102
|
57 traits::clear<Geometry>::apply(*mls);
|
Chris@102
|
58 traits::resize<Geometry>::apply(*mls, 0);
|
Chris@102
|
59 linestring_type* ls = 0;
|
Chris@102
|
60 traits::push_back<Geometry>::apply(*mls, *ls);
|
Chris@102
|
61 }
|
Chris@102
|
62 #endif
|
Chris@102
|
63 };
|
Chris@102
|
64
|
Chris@102
|
65
|
Chris@102
|
66 /*!
|
Chris@102
|
67 \brief concept for multi-linestring (const version)
|
Chris@102
|
68 \ingroup const_concepts
|
Chris@102
|
69 */
|
Chris@102
|
70 template <typename Geometry>
|
Chris@102
|
71 class ConstMultiLinestring
|
Chris@102
|
72 {
|
Chris@102
|
73 #ifndef DOXYGEN_NO_CONCEPT_MEMBERS
|
Chris@102
|
74 typedef typename boost::range_value<Geometry>::type linestring_type;
|
Chris@102
|
75
|
Chris@102
|
76 BOOST_CONCEPT_ASSERT( (concept::ConstLinestring<linestring_type>) );
|
Chris@102
|
77 BOOST_CONCEPT_ASSERT( (boost::RandomAccessRangeConcept<Geometry>) );
|
Chris@102
|
78
|
Chris@102
|
79
|
Chris@102
|
80 public :
|
Chris@102
|
81
|
Chris@102
|
82 BOOST_CONCEPT_USAGE(ConstMultiLinestring)
|
Chris@102
|
83 {
|
Chris@102
|
84 }
|
Chris@102
|
85 #endif
|
Chris@102
|
86 };
|
Chris@102
|
87
|
Chris@102
|
88 }}} // namespace boost::geometry::concept
|
Chris@102
|
89
|
Chris@102
|
90
|
Chris@102
|
91 #endif // BOOST_GEOMETRY_GEOMETRIES_CONCEPTS_MULTI_LINESTRING_CONCEPT_HPP
|