Function object for determining whether the first object of the given type is less than the second object of the same type.
#include <ace/Functor_T.h>
template<class TYPE> class ACE_Less_Than {
public:
int operator () (const TYPE &lhs, const TYPE &rhs) const;
};
int operator () (const TYPE &lhs, const TYPE &rhs) const;
cdgill@cs.wustl.edu
Based on Command Pattern implementations originally done by
Carlos O'Ryan coryan@cs.wustl.edu
and
Douglas C. Schmidt schmidt@cs.wustl.edu
and
Sergio Flores-Gaitan sergio@cs.wustl.edu
and on STL-style functor implementations originally done by
Irfan Pyarali irfan@cs.wustl.edu