[6916] Fixed typos in spell checking code.
[getmangos.git] / dep / ACE_wrappers / ace / FILE_Addr.inl
blob0ae7d31d278fd62d84a38a85bbfff52c809d5e30
1 // -*- C++ -*-
2 //
3 // $Id: FILE_Addr.inl 80826 2008-03-04 14:51:23Z wotte $
6 #include "ace/SString.h"
8 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
10 // Compare two addresses for equality.
12 ACE_INLINE bool
13 ACE_FILE_Addr::operator == (const ACE_FILE_Addr &sap) const
15   return ACE_OS::strcmp (this->filename_, sap.filename_) == 0;
18 // Compare two addresses for inequality.
20 ACE_INLINE bool
21 ACE_FILE_Addr::operator != (const ACE_FILE_Addr &sap) const
23   return !((*this) == sap);     // This is lazy, of course... ;-)
26 // Return the path name used for the rendezvous point.
28 ACE_INLINE const ACE_TCHAR *
29 ACE_FILE_Addr::get_path_name (void) const
31   return this->filename_;
34 ACE_END_VERSIONED_NAMESPACE_DECL