![]() |
Mesh Oriented datABase
(version 5.4.1)
Array-based unstructured mesh datastructure
|
#include <Range.hpp>
Public Member Functions | |
const_pair_iterator () | |
const_pair_iterator (const PairNode *node) | |
const_pair_iterator (const const_iterator &i) | |
const PairNode & | operator* () const |
const PairNode * | operator-> () const |
const_pair_iterator & | operator-- () |
const_pair_iterator & | operator++ () |
const_pair_iterator | operator-- (int) |
const_pair_iterator | operator++ (int) |
bool | operator== (const const_pair_iterator &other) const |
bool | operator!= (const const_pair_iterator &other) const |
Private Attributes | |
const PairNode * | myNode |
moab::Range::const_pair_iterator::const_pair_iterator | ( | const PairNode * | node | ) | [inline] |
moab::Range::const_pair_iterator::const_pair_iterator | ( | const const_iterator & | i | ) | [inline] |
bool moab::Range::const_pair_iterator::operator!= | ( | const const_pair_iterator & | other | ) | const [inline] |
const PairNode& moab::Range::const_pair_iterator::operator* | ( | ) | const [inline] |
const_pair_iterator& moab::Range::const_pair_iterator::operator++ | ( | ) | [inline] |
const_pair_iterator moab::Range::const_pair_iterator::operator++ | ( | int | ) | [inline] |
Definition at line 718 of file Range.hpp.
References moab::operator++().
{
const_pair_iterator rval( *this );
this->operator++();
return rval;
}
const_pair_iterator& moab::Range::const_pair_iterator::operator-- | ( | ) | [inline] |
Definition at line 699 of file Range.hpp.
References moab::Range::PairNode::mPrev.
{
myNode = myNode->mPrev;
return *this;
}
const_pair_iterator moab::Range::const_pair_iterator::operator-- | ( | int | ) | [inline] |
const PairNode* moab::Range::const_pair_iterator::operator-> | ( | ) | const [inline] |
bool moab::Range::const_pair_iterator::operator== | ( | const const_pair_iterator & | other | ) | const [inline] |
const PairNode* moab::Range::const_pair_iterator::myNode [private] |
Definition at line 736 of file Range.hpp.
Referenced by operator!=(), and operator==().