00001 #ifndef LESS_PTR_HPP
00002 #define LESS_PTR_HPP
00003
00004
00005
00006 namespace ml_functional
00007 {
00010 struct less_ptr
00011 {
00012 template< typename PtrType >
00013 bool operator()(const PtrType rhs, const PtrType lhs) const
00014 { return *rhs < *lhs; }
00015 };
00016
00017 }
00018
00019 #endif
00020