diff options
| author | Vincent Richard <[email protected]> | 2004-10-21 15:05:47 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2004-10-21 15:05:47 +0000 |
| commit | 2949fb51f13e1236d5c161f02e1c2c8541100e9f (patch) | |
| tree | 991edcf50483116ce83977a4d9e652de8c5328dc /src/messaging/simpleAuthenticator.hpp | |
| parent | header class unit tests added (diff) | |
| download | vmime-2949fb51f13e1236d5c161f02e1c2c8541100e9f.tar.gz vmime-2949fb51f13e1236d5c161f02e1c2c8541100e9f.zip | |
Refactoring (see ChangeLog).
Diffstat (limited to 'src/messaging/simpleAuthenticator.hpp')
| -rw-r--r-- | src/messaging/simpleAuthenticator.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/messaging/simpleAuthenticator.hpp b/src/messaging/simpleAuthenticator.hpp index 9d19f4c6..4fbbbf0a 100644 --- a/src/messaging/simpleAuthenticator.hpp +++ b/src/messaging/simpleAuthenticator.hpp @@ -37,11 +37,11 @@ public: public: - const string& username() const { return (m_username); } - string& username() { return (m_username); } + const string& getUsername() const; + void setUsername(const string& username); - const string& password() const { return (m_password); } - string& password() { return (m_password); } + const string& getPassword() const; + void setPassword(const string& password); private: |
