![]() |
dnp3 (C++ API) 1.6.0
|
Iterator over FileInfo instances. More...
#include <dnp3.hpp>
Public Member Functions | |
| FileInfoIterator (FileInfoIterator &&)=default | |
| move constructor for the iterator More... | |
| bool | next () |
| move the iterator to the next value More... | |
| FileInfo | get () |
| retrieve the current value More... | |
Friends | |
| class | CppFileInfoIteratorFriend |
Iterator over FileInfo instances.
Always use this pattern to extract values from the iterator:
while(iter.next()) { FileInfo value = iter.get(); }
Calling get() when no value is available will throw std::logic_error
|
default |
move constructor for the iterator
| FileInfo dnp3::FileInfoIterator::get | ( | ) |
| bool dnp3::FileInfoIterator::next | ( | ) |
move the iterator to the next value