inicpp
C++ parser of INI files with schema validation.
|
#include <section.h>
Public Member Functions | |
section_iterator ()=delete | |
section_iterator (const section_iterator &source)=default | |
section_iterator & | operator= (const section_iterator &source)=default |
section_iterator (section_iterator &&source)=default | |
section_iterator & | operator= (section_iterator &&source)=default |
section_iterator (section &source, size_t position) | |
section_iterator (section &source) | |
section_iterator & | operator++ () |
section_iterator | operator++ (int) |
bool | operator== (const section_iterator &second) const |
bool | operator!= (const section_iterator &second) const |
reference | operator* () |
pointer | operator-> () |
Forward declaration of iterator used in section class
Templated section iterator. Templates provide const and non-const iterator in one implementation. For easier implementation inheritance from std::iterator is used.
|
delete |
Deleted default constructor.
|
default |
Copy constructor.
|
default |
Move constructor.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
default |
Copy assignment.
|
default |
Move assignment.
|
inline |