#include <OSPFcommon.h>
Public Member Functions | |
bool | operator() (LSAKeyType leftKey, LSAKeyType rightKey) const |
bool OSPF::LSAKeyType_Less::operator() | ( | LSAKeyType | leftKey, | |
LSAKeyType | rightKey | |||
) | const [inline] |
00212 { 00213 return ((leftKey.linkStateID < rightKey.linkStateID) || 00214 ((leftKey.linkStateID == rightKey.linkStateID) && 00215 (leftKey.advertisingRouter < rightKey.advertisingRouter))); 00216 }