diff options
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: |