|
reSIProcate/rutil
9694
|
Public Member Functions | |
| bool | operator() (RRList *lhs, RRList *rhs) const |
Definition at line 55 of file RRCache.hxx.
Definition at line 58 of file RRCache.hxx.
References resip::RRList::key(), and resip::RRList::rrType().
{
if (lhs->rrType() < rhs->rrType())
{
return true;
}
else if (lhs->rrType() > rhs->rrType())
{
return false;
}
else
{
return lhs->key() < rhs->key();
}
}

1.7.5.1