summaryrefslogtreecommitdiff
path: root/ace/Functor.i
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-01 11:15:26 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-01 11:15:26 +0000
commitb38582354ed287367fd93be229ae5e9dbf9188e7 (patch)
tree9a2cd7fff6f9e796968703bf3bb2cb7ca5c5bf82 /ace/Functor.i
parent6a0568c32aa670b9d9c216c18ae796749c816819 (diff)
downloadATCD-b38582354ed287367fd93be229ae5e9dbf9188e7.tar.gz
ChangeLogTag:Sat Nov 1 05:40:21 UTC 2003 Don Hinton <dhinton@dresystems.com>
Diffstat (limited to 'ace/Functor.i')
-rw-r--r--ace/Functor.i18
1 files changed, 9 insertions, 9 deletions
diff --git a/ace/Functor.i b/ace/Functor.i
index 25dedd00d6b..d008cb61285 100644
--- a/ace/Functor.i
+++ b/ace/Functor.i
@@ -30,7 +30,7 @@
// ============================================================================
#include "ace/ACE.h"
-#include "ace/OS_String.h"
+#include "ace/OS_NS_string.h"
//////////////////////////////////////////////////////////////
// GOF Command Pattern Classes and Template Specializations //
@@ -137,14 +137,14 @@ ACE_Hash<void *>::operator () (const void *t) const
ACE_INLINE int
ACE_Equal_To<const ACE_TCHAR *>::operator () (const ACE_TCHAR *lhs, const ACE_TCHAR *rhs) const
{
- return !ACE_OS_String::strcmp (lhs, rhs);
+ return !ACE_OS::strcmp (lhs, rhs);
}
//ACE_TEMPLATE_METHOD_SPECIALIZATION
ACE_INLINE int
ACE_Equal_To<ACE_TCHAR *>::operator () (const ACE_TCHAR *lhs, const ACE_TCHAR *rhs) const
{
- return !ACE_OS_String::strcmp (lhs, rhs);
+ return !ACE_OS::strcmp (lhs, rhs);
}
ACE_INLINE int
@@ -186,14 +186,14 @@ ACE_Equal_To<ACE_UINT64>::operator () (const ACE_UINT64 lhs, const ACE_UINT64 rh
ACE_INLINE int
ACE_Less_Than<const ACE_TCHAR *>::operator () (const ACE_TCHAR *lhs, const ACE_TCHAR *rhs) const
{
- return (ACE_OS_String::strcmp (lhs, rhs) < 0) ? 1 : 0;
+ return (ACE_OS::strcmp (lhs, rhs) < 0) ? 1 : 0;
}
//ACE_TEMPLATE_METHOD_SPECIALIZATION
ACE_INLINE int
ACE_Less_Than<ACE_TCHAR *>::operator () (const ACE_TCHAR *lhs, const ACE_TCHAR *rhs) const
{
- return (ACE_OS_String::strcmp (lhs, rhs) < 0) ? 1 : 0;
+ return (ACE_OS::strcmp (lhs, rhs) < 0) ? 1 : 0;
}
@@ -217,28 +217,28 @@ ACE_Hash<ACE_ANTI_TCHAR *>::operator () (const ACE_ANTI_TCHAR *t) const
ACE_INLINE int
ACE_Equal_To<const ACE_ANTI_TCHAR *>::operator () (const ACE_ANTI_TCHAR *lhs, const ACE_ANTI_TCHAR *rhs) const
{
- return !ACE_OS_String::strcmp (lhs, rhs);
+ return !ACE_OS::strcmp (lhs, rhs);
}
//ACE_TEMPLATE_METHOD_SPECIALIZATION
ACE_INLINE int
ACE_Equal_To<ACE_ANTI_TCHAR *>::operator () (const ACE_ANTI_TCHAR *lhs, const ACE_ANTI_TCHAR *rhs) const
{
- return !ACE_OS_String::strcmp (lhs, rhs);
+ return !ACE_OS::strcmp (lhs, rhs);
}
//ACE_TEMPLATE_METHOD_SPECIALIZATION
ACE_INLINE int
ACE_Less_Than<const ACE_ANTI_TCHAR *>::operator () (const ACE_ANTI_TCHAR *lhs, const ACE_ANTI_TCHAR *rhs) const
{
- return (ACE_OS_String::strcmp (lhs, rhs) < 0) ? 1 : 0;
+ return (ACE_OS::strcmp (lhs, rhs) < 0) ? 1 : 0;
}
//ACE_TEMPLATE_METHOD_SPECIALIZATION
ACE_INLINE int
ACE_Less_Than<ACE_ANTI_TCHAR *>::operator () (const ACE_ANTI_TCHAR *lhs, const ACE_ANTI_TCHAR *rhs) const
{
- return (ACE_OS_String::strcmp (lhs, rhs) < 0) ? 1 : 0;
+ return (ACE_OS::strcmp (lhs, rhs) < 0) ? 1 : 0;
}
#endif // ACE_USES_WCHAR