Go to the documentation of this file.
26 #ifndef __TERRALIB_ST_INTERNAL_TRAJECTORYITERATOR_H
27 #define __TERRALIB_ST_INTERNAL_TRAJECTORYITERATOR_H
30 #include "../../Config.h"
31 #include "../../Utils.h"
38 #include <boost/shared_ptr.hpp>
41 namespace te {
namespace dt {
class DateTime; } }
42 namespace te {
namespace gm {
class Geometry; } }
163 TrajectoryObservationSet::const_iterator
m_it;
188 #endif // __TERRALIB_ST_INTERNAL_TimeSeriesITERATOR_H
This file contains a typedef that defines observations of trajectory.
TrajectoryIterator begin() const
TrajectoryIterator()
Empty constructor.
virtual ~TrajectoryIterator()
Virtual destructor.
TrajectoryIterator & operator++()
Prefix operator ++.
TrajectoryIterator operator--(int aux)
Postfix operator –.
te::dt::DateTime * getTime() const
It returns the datetime pointed by the internal cursor.
bool operator!=(const TrajectoryIterator &rhs)
Operator !=.
TrajectoryIterator m_begin
TrajectoryPatch(TrajectoryIterator b, TrajectoryIterator e)
te::gm::Geometry * getGeometry() const
It returns the geometry pointed by the internal cursor.
const TrajectoryIterator & operator=(const TrajectoryIterator &rhs)
Assignment operator.
std::pair< te::dt::DateTimeShrPtr, te::gm::GeometrySharedPtr > TrajectoryObservation
TrajectoryIterator & operator--()
Prefix operator –.
A struct to represent a patch or a continuous piece of a trajectory.
TrajectoryObservation operator*() const
Prefix operator *.
A class to traverse the observations of a trajectory.
#define TESTEXPORT
You can use this macro in order to export/import classes and functions from this module.
TrajectoryIterator operator++(int aux)
Postfix operator ++.
bool operator==(const TrajectoryIterator &rhs)
Operator ==.
TrajectoryObservationSet::const_iterator m_it
The internal cursor.
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.
TrajectoryIterator end() const
TrajectoryIterator(TrajectoryObservationSet::const_iterator &it)
Constructor.