MIDAS
Loading...
Searching...
No Matches
midas::odb::iterator Class Reference

#include <odbxx.h>

Collaboration diagram for midas::odb::iterator:

Public Member Functions

 iterator (u_odb *pu)
 
iterator operator++ ()
 
iterator operator++ (int)
 
bool operator!= (const iterator &other) const
 
u_odboperator* ()
 

Private Attributes

u_odbpu_odb
 

Detailed Description

Definition at line 425 of file odbxx.h.

Constructor & Destructor Documentation

◆ iterator()

midas::odb::iterator::iterator ( u_odb pu)
inline

Definition at line 427 of file odbxx.h.

427: pu_odb(pu) {}

Member Function Documentation

◆ operator!=()

bool midas::odb::iterator::operator!= ( const iterator other) const
inline

Definition at line 442 of file odbxx.h.

442{ return pu_odb != other.pu_odb; }

◆ operator*()

u_odb & midas::odb::iterator::operator* ( )
inline

Definition at line 444 of file odbxx.h.

444{ return *pu_odb; }

◆ operator++() [1/2]

iterator midas::odb::iterator::operator++ ( )
inline

Definition at line 430 of file odbxx.h.

430 {
431 ++pu_odb;
432 return *this;
433 }
Here is the caller graph for this function:

◆ operator++() [2/2]

iterator midas::odb::iterator::operator++ ( int  )
inline

Definition at line 436 of file odbxx.h.

436 {
437 iterator ret = *this;
438 this->operator++();
439 return ret;
440 }
iterator operator++()
Definition odbxx.h:430
iterator(u_odb *pu)
Definition odbxx.h:427
Here is the call graph for this function:

Member Data Documentation

◆ pu_odb

u_odb* midas::odb::iterator::pu_odb
private

Definition at line 447 of file odbxx.h.


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