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 410 of file odbxx.h.

Constructor & Destructor Documentation

◆ iterator()

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

Definition at line 412 of file odbxx.h.

412: pu_odb(pu) {}
TH1X EXPRT * h1_book(const char *name, const char *title, int bins, double min, double max)
Definition rmidas.h:24

Member Function Documentation

◆ operator!=()

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

Definition at line 427 of file odbxx.h.

427{ return pu_odb != other.pu_odb; }
Here is the call graph for this function:

◆ operator*()

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

Definition at line 429 of file odbxx.h.

429{ return *pu_odb; }

◆ operator++() [1/2]

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

Definition at line 415 of file odbxx.h.

415 {
416 ++pu_odb;
417 return *this;
418 }
Here is the caller graph for this function:

◆ operator++() [2/2]

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

Definition at line 421 of file odbxx.h.

421 {
422 iterator ret = *this;
423 this->operator++();
424 return ret;
425 }
iterator operator++()
Definition odbxx.h:415
iterator(u_odb *pu)
Definition odbxx.h:412
Here is the call graph for this function:

Member Data Documentation

◆ pu_odb

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

Definition at line 432 of file odbxx.h.


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