Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / ACE / protocols / ace / INet / HTTP_BasicAuthentication.inl
blob1b88dfc2bf78c257dd66d26802d79f2fa45235e5
1 // -*- C++ -*-
2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
4 namespace ACE
6   namespace HTTP
7   {
9     ACE_INLINE
10     void BasicAuthentication::user (const ACE_CString& usr)
11       {
12         this->user_ = usr;
13       }
15     ACE_INLINE
16     const ACE_CString& BasicAuthentication::user () const
17       {
18         return this->user_;
19       }
21     ACE_INLINE
22     void BasicAuthentication::password (const ACE_CString& passwd)
23       {
24         this->passwd_ = passwd;
25       }
27     ACE_INLINE
28     const ACE_CString& BasicAuthentication::password () const
29       {
30         return this->passwd_;
31       }
33   }
36 ACE_END_VERSIONED_NAMESPACE_DECL