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

Constructor & Destructor Documentation

◆ iterator()

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

Definition at line 421 of file odbxx.h.

421: 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 436 of file odbxx.h.

436{ 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 438 of file odbxx.h.

438{ return *pu_odb; }

◆ operator++() [1/2]

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

Definition at line 424 of file odbxx.h.

424 {
425 ++pu_odb;
426 return *this;
427 }
Here is the caller graph for this function:

◆ operator++() [2/2]

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

Definition at line 430 of file odbxx.h.

430 {
431 iterator ret = *this;
432 this->operator++();
433 return ret;
434 }
iterator operator++()
Definition odbxx.h:424
iterator(u_odb *pu)
Definition odbxx.h:421
Here is the call graph for this function:

Member Data Documentation

◆ pu_odb

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

Definition at line 441 of file odbxx.h.


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