Public Member Functions

ACE_Less_Than< const char * > Class Template Reference

Function object for determining whether the first const string is less than the second const string. More...

#include <Functor.h>

List of all members.

Public Member Functions

int operator() (const char *lhs, const char *rhs) const
 Simply calls ACE_OS::strcmp.

Detailed Description

template<>
class ACE_Less_Than< const char * >

Function object for determining whether the first const string is less than the second const string.

Definition at line 406 of file Functor.h.


Member Function Documentation

int ACE_Less_Than< const char * >::operator() ( const char *  lhs,
const char *  rhs 
) const [inline]

Simply calls ACE_OS::strcmp.

Definition at line 230 of file Functor.inl.

{
  return (ACE_OS::strcmp (lhs, rhs) < 0) ? 1 : 0;
}


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines