An abstract read iterator. More...
#include <Uri.hpp>
Public Member Functions | |
| virtual | ~UriIterator ()=default |
| Destroy the iterator instance. More... | |
| virtual bool | hasNext () const =0 |
| Returns true if there is another item available in the iterator. More... | |
| virtual std::unique_ptr< Uri > | next ()=0 |
| Get the next item. More... | |
An abstract read iterator.
|
virtualdefault |
Destroy the iterator instance.
|
pure virtual |
Returns true if there is another item available in the iterator.
Implemented in File::FileUriIterator.
|
pure virtual |