class mrpt::obs::CRawlog::iterator
Overview
A normal iterator, plus the extra method “getType” to determine the type of each entry in the sequence.
#include <mrpt/obs/CRawlog.h> class iterator { public: // construction iterator(); iterator(const TListObjects::iterator& it); // methods iterator& operator = (const iterator& o); bool operator == (const iterator& o); bool operator != (const iterator& o); mrpt::serialization::CSerializable::Ptr operator * (); iterator operator ++ (int); iterator& operator ++ (); iterator operator -- (int); iterator& operator -- (); TEntryType getType() const; static iterator erase( TListObjects& lst, const iterator& it ); };