// This is a simple comparator object used by p4sort.cpp. // This returns true if and only if lint is less than rint. #ifndef P4SORT_COMPARE_H #define P4SORT_COMPARE_H struct less_int { bool operator() (const int & lint, const int & rint) const { return lint < rint; } }; #endif