reSIProcate/repro  9694
Public Member Functions | Public Attributes
repro::WebAdmin::RemoveKey Class Reference
Collaboration diagram for repro::WebAdmin::RemoveKey:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 RemoveKey (const resip::Data &key1, const resip::Data &key2)
bool operator< (const RemoveKey &rhs) const

Public Attributes

resip::Data mKey1
resip::Data mKey2

Detailed Description

Definition at line 75 of file WebAdmin.hxx.


Constructor & Destructor Documentation

WebAdmin::RemoveKey::RemoveKey ( const resip::Data key1,
const resip::Data key2 
)

Definition at line 44 of file WebAdmin.cxx.

                                                               : mKey1(key1), mKey2(key2) 
{
}; 

Member Function Documentation

bool WebAdmin::RemoveKey::operator< ( const RemoveKey rhs) const

Definition at line 49 of file WebAdmin.cxx.

{
   if(mKey1 < rhs.mKey1) 
   {
      return true;
   }
   else if(mKey1 == rhs.mKey1 && mKey2 < rhs.mKey2) 
   { 
      return true; 
   }
   else 
   {
      return false;
   }
}

Member Data Documentation

Definition at line 80 of file WebAdmin.hxx.

Definition at line 81 of file WebAdmin.hxx.


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