Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

model::multi_linestring

multi_line, a collection of linestring

Description

Multi-linestring can be used to group lines belonging to each other, e.g. a highway (with interruptions)

Model of

MultiLineString Concept

Synopsis

template<typename LineString, template< typename, typename > class Container, template< typename > class Allocator>
class model::multi_linestring
      : public Container< LineString, Allocator< LineString > >
{
  // ...
};

Template parameter(s)

Parameter

Default

Description

typename LineString

template< typename, typename > class Container

std::vector

template< typename > class Allocator

std::allocator

Header

#include <boost/geometry/multi/geometries/multi_linestring.hpp>


PrevUpHomeNext