#include <CoordinateList.h>
Public Types | |
typedef std::list< Coordinate >::iterator | iterator |
typedef std::list< Coordinate >::const_iterator | const_iterator |
typedef std::list< Coordinate >::size_type | size_type |
Public Member Functions | |
CoordinateList (const std::vector< Coordinate > &v) | |
Constructs a new list from an array of Coordinates, allowing repeated points. | |
size_type | size () const |
bool | empty () const |
iterator | begin () |
iterator | end () |
const_iterator | begin () const |
const_iterator | end () const |
iterator | insert (iterator pos, const Coordinate &c, bool allowRepeated) |
Inserts the specified coordinate at the specified position in this list. | |
iterator | insert (iterator pos, const Coordinate &c) |
iterator | erase (iterator pos) |
iterator | erase (iterator first, iterator last) |
std::auto_ptr< Coordinate::Vect > | toCoordinateArray () const |
Friends | |
std::ostream & | operator<< (std::ostream &os, const CoordinateList &cl) |
Use this class when fast insertions and removal at arbitrary position is needed. The class keeps ownership of the Coordinates.
|
Constructs a new list from an array of Coordinates, allowing repeated points. (I.e. this constructor produces a CoordinateList with exactly the same set of points as the input array.)
|
|
Inserts the specified coordinate at the specified position in this list.
|