1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef CommonTools_Utils_AnyPairSelector_h
#define CommonTools_Utils_AnyPairSelector_h
/* \class AnyPairSelector
*
* \author Luca Lista, INFN
*
* $Id: AnyPairSelector.h,v 1.3 2007/06/18 18:33:53 llista Exp $
*/
struct AnyPairSelector {
template <typename T1, typename T2>
bool operator()(const T1 &, const T2 &) const {
return true;
}
};
#endif
|