#include "ace/Malloc_Base.h"#include "ace/Min_Max.h"#include "ace/OS_NS_string.h"#include "ace/OS_Memory.h"

Go to the source code of this file.
Functions | |
| template<class ACE_CHAR_T > | |
| bool | operator== (const ACE_CHAR_T *s, const ACE_String_Base< ACE_CHAR_T > &t) |
| template<class ACE_CHAR_T > | |
| bool | operator!= (const ACE_CHAR_T *s, const ACE_String_Base< ACE_CHAR_T > &t) |
| bool operator!= | ( | const ACE_CHAR_T * | s, | |
| const ACE_String_Base< ACE_CHAR_T > & | t | |||
| ) |
Definition at line 455 of file String_Base.inl.
{
return !(t == s);
}
| bool operator== | ( | const ACE_CHAR_T * | s, | |
| const ACE_String_Base< ACE_CHAR_T > & | t | |||
| ) |
Definition at line 448 of file String_Base.inl.
{
return t == s;
}
1.7.0