libcosmos
Linux C++ System Programming Library
|
Helper class to iterate over InterfaceEnumerator. More...
#include <InterfaceIterator.hxx>
Public Member Functions | |
InterfaceIterator (const InterfaceInfo *pos) | |
auto & | operator++ () |
const InterfaceInfo & | operator* () |
bool | operator== (const InterfaceIterator &other) const |
bool | operator!= (const InterfaceIterator &other) const |
Protected Attributes | |
const InterfaceInfo * | m_pos = &M_END |
Static Protected Attributes | |
static constexpr InterfaceInfo | M_END = InterfaceInfo{} |
Helper class to iterate over InterfaceEnumerator.
InterfaceEnumerator holds a list of structures allocated in libc. This iterator is able to iterate over the list. Usually you don't need to use it explicitly, a range based for loop used on InterfaceEnumerator will use it automatically.
The end of the array is marked by a nullptr if_name and zero if_index. We keep such an element in the M_END member, which serves as the end() iterator in InterfaceEnumerator.
Definition at line 20 of file InterfaceIterator.hxx.
|
inlineconstexpr |
Definition at line 23 of file InterfaceIterator.hxx.
|
inline |
Definition at line 25 of file InterfaceIterator.hxx.
|
inline |
Definition at line 57 of file InterfaceIterator.hxx.
|
inline |
Definition at line 39 of file InterfaceIterator.hxx.
|
inline |
Definition at line 29 of file InterfaceIterator.hxx.
|
inline |
Definition at line 47 of file InterfaceIterator.hxx.
|
staticconstexprprotected |
Definition at line 63 of file InterfaceIterator.hxx.
|
protected |
Definition at line 65 of file InterfaceIterator.hxx.