reSIProcate/rutil  9694
Public Member Functions
resip::RRCache::CompareT Class Reference

List of all members.

Public Member Functions

bool operator() (RRList *lhs, RRList *rhs) const

Detailed Description

Definition at line 55 of file RRCache.hxx.


Member Function Documentation

bool resip::RRCache::CompareT::operator() ( RRList lhs,
RRList rhs 
) const [inline]

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();
               }
            }

Here is the call graph for this function:


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