|
reSIProcate/stack
9694
|

Public Member Functions | |
| ListEntry (const Tuple &tuple, UInt64 expiry) | |
| ListEntry (const ListEntry &orig) | |
| ~ListEntry () | |
| bool | operator< (const ListEntry &rhs) const |
| bool | operator> (const ListEntry &rhs) const |
| bool | operator== (const ListEntry &rhs) const |
Public Attributes | |
| Tuple | mTuple |
| UInt64 | mExpiry |
Private Member Functions | |
| ListEntry () | |
Definition at line 36 of file TupleMarkManager.hxx.
Definition at line 65 of file TupleMarkManager.cxx.
| resip::TupleMarkManager::ListEntry::ListEntry | ( | const ListEntry & | orig | ) |
Definition at line 70 of file TupleMarkManager.cxx.
| resip::TupleMarkManager::ListEntry::~ListEntry | ( | ) |
Definition at line 75 of file TupleMarkManager.cxx.
{}
| resip::TupleMarkManager::ListEntry::ListEntry | ( | ) | [private] |
| bool resip::TupleMarkManager::ListEntry::operator< | ( | const ListEntry & | rhs | ) | const |
Definition at line 79 of file TupleMarkManager.cxx.
References resip::Tuple::getTargetDomain(), and mTuple.
{
if(mTuple < rhs.mTuple)
{
return true;
}
else if(rhs.mTuple < mTuple)
{
return false;
}
return mTuple.getTargetDomain() < rhs.mTuple.getTargetDomain();
}

| bool resip::TupleMarkManager::ListEntry::operator== | ( | const ListEntry & | rhs | ) | const |
Definition at line 109 of file TupleMarkManager.cxx.
References resip::Tuple::getTargetDomain(), and mTuple.

| bool resip::TupleMarkManager::ListEntry::operator> | ( | const ListEntry & | rhs | ) | const |
Definition at line 94 of file TupleMarkManager.cxx.
References resip::Tuple::getTargetDomain(), and mTuple.
{
if(rhs.mTuple < mTuple)
{
return true;
}
else if(mTuple < rhs.mTuple)
{
return false;
}
return mTuple.getTargetDomain() > rhs.mTuple.getTargetDomain();
}

Definition at line 47 of file TupleMarkManager.hxx.
Definition at line 46 of file TupleMarkManager.hxx.
Referenced by operator<(), operator==(), and operator>().
1.7.5.1