Function object for determining whether the first string is less than the second string. More...
#include <Functor.h>
Public Member Functions | |
| int | operator() (const char *lhs, const char *rhs) const |
| Simply calls ACE_OS::strcmp. | |
Function object for determining whether the first string is less than the second string.
Definition at line 419 of file Functor.h.
| int ACE_Less_Than< char * >::operator() | ( | const char * | lhs, | |
| const char * | rhs | |||
| ) | const [inline] |
Simply calls ACE_OS::strcmp.
Definition at line 236 of file Functor.inl.
{
return (ACE_OS::strcmp (lhs, rhs) < 0) ? 1 : 0;
}
1.7.0