#include <MatchStore.h>
Collaboration diagram for CombineSort< C1, C2, C3 >:

Public Member Functions | |
| CombineSort () | |
| bool | operator() (const Match *p1, const Match *p2) const |
Public Attributes | |
| C1 | c1_ |
| C2 | c2_ |
| C3 | c3_ |
Definition at line 425 of file MatchStore.h.
| CombineSort< C1, C2, C3 >::CombineSort | ( | ) | [inline] |
| bool CombineSort< C1, C2, C3 >::operator() | ( | const Match * | p1, | |
| const Match * | p2 | |||
| ) | const [inline] |
Definition at line 429 of file MatchStore.h.
References CombineSort< C1, C2, C3 >::c1_, CombineSort< C1, C2, C3 >::c2_, and CombineSort< C1, C2, C3 >::c3_.
00430 { 00431 return ( c1_(p1,p2) 00432 || ( (!c1_(p2,p1)) && c2_(p1,p2) ) 00433 || ( (!c2_(p2,p1)) && c3_(p1,p2) ) ); 00434 }
| C1 CombineSort< C1, C2, C3 >::c1_ |
| C2 CombineSort< C1, C2, C3 >::c2_ |
| C3 CombineSort< C1, C2, C3 >::c3_ |
1.5.2