inicpp
C++ parser of INI files with schema validation.
All Classes Namespaces Functions Variables Typedefs Friends Pages
inicpp::section_iterator< Element > Class Template Reference

#include <section.h>

+ Inheritance diagram for inicpp::section_iterator< Element >:

Public Member Functions

 section_iterator ()=delete
 
 section_iterator (const section_iterator &source)=default
 
section_iteratoroperator= (const section_iterator &source)=default
 
 section_iterator (section_iterator &&source)=default
 
section_iteratoroperator= (section_iterator &&source)=default
 
 section_iterator (section &source, size_t position)
 
 section_iterator (section &source)
 
section_iteratoroperator++ ()
 
section_iterator operator++ (int)
 
bool operator== (const section_iterator &second) const
 
bool operator!= (const section_iterator &second) const
 
reference operator* ()
 
pointer operator-> ()
 

Detailed Description

template<typename Element>
class inicpp::section_iterator< Element >

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.

Definition at line 20 of file section.h.

Constructor & Destructor Documentation

template<typename Element >
inicpp::section_iterator< Element >::section_iterator ( )
delete

Deleted default constructor.

template<typename Element >
inicpp::section_iterator< Element >::section_iterator ( const section_iterator< Element > &  source)
default

Copy constructor.

template<typename Element >
inicpp::section_iterator< Element >::section_iterator ( section_iterator< Element > &&  source)
default

Move constructor.

template<typename Element >
inicpp::section_iterator< Element >::section_iterator ( section source,
size_t  position 
)
inline

Construct iterator on given container and pointing at specified postion.

Parameters
sourcecontainer which can be iterated
positioninitial position to given container

Definition at line 261 of file section.h.

template<typename Element >
inicpp::section_iterator< Element >::section_iterator ( section source)
inline

Construct iterator on given container pointing at the start.

Parameters
sourcecontainer which can be iterated

Definition at line 268 of file section.h.

Member Function Documentation

template<typename Element >
bool inicpp::section_iterator< Element >::operator!= ( const section_iterator< Element > &  second) const
inline

Non-equality compare method for iterators.

Parameters
second
Returns
true if iterators are different

Definition at line 306 of file section.h.

template<typename Element >
reference inicpp::section_iterator< Element >::operator* ( )
inline

Iterator dereference operator.

Returns
reference to option on current position

Definition at line 315 of file section.h.

template<typename Element >
section_iterator& inicpp::section_iterator< Element >::operator++ ( )
inline

Moves iterator to next position.

Returns
iterator itself

Definition at line 276 of file section.h.

template<typename Element >
section_iterator inicpp::section_iterator< Element >::operator++ ( int  )
inline

Moves iterator to next position.

Returns
new iterator with old position

Definition at line 285 of file section.h.

template<typename Element >
pointer inicpp::section_iterator< Element >::operator-> ( )
inline

Iterator -> operator

Returns
pointer to option on current position

Definition at line 324 of file section.h.

template<typename Element >
section_iterator& inicpp::section_iterator< Element >::operator= ( const section_iterator< Element > &  source)
default

Copy assignment.

template<typename Element >
section_iterator& inicpp::section_iterator< Element >::operator= ( section_iterator< Element > &&  source)
default

Move assignment.

template<typename Element >
bool inicpp::section_iterator< Element >::operator== ( const section_iterator< Element > &  second) const
inline

Equality compare method for iterators.

Parameters
second
Returns
true if iterators are the same

Definition at line 297 of file section.h.


The documentation for this class was generated from the following file: