summaryrefslogtreecommitdiff
path: root/TAO/tao/CORBA_String.inl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit8008dd09ccf88d4edef237a184a698cac42f2952 (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/CORBA_String.inl
parent13d6e89af439164c0ade48e6f5c3e9b3f971e8c9 (diff)
downloadATCD-8008dd09ccf88d4edef237a184a698cac42f2952.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/CORBA_String.inl')
-rw-r--r--TAO/tao/CORBA_String.inl23
1 files changed, 0 insertions, 23 deletions
diff --git a/TAO/tao/CORBA_String.inl b/TAO/tao/CORBA_String.inl
deleted file mode 100644
index daeecf0628c..00000000000
--- a/TAO/tao/CORBA_String.inl
+++ /dev/null
@@ -1,23 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-#include "ace/OS_NS_string.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_INLINE bool
-TAO::String_Var_Equal_To::operator() (CORBA::String_var const & lhs,
- CORBA::String_var const & rhs) const
-{
- return (ACE_OS::strcmp (lhs.in (), rhs.in ()) == 0);
-}
-
-ACE_INLINE bool
-TAO::String_Var_Equal_To::operator() (CORBA::WString_var const & lhs,
- CORBA::WString_var const & rhs) const
-{
- return (ACE_OS::strcmp (lhs.in (), rhs.in ()) == 0);
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL