diff options
Diffstat (limited to 'src/nxmaccessmanager.h')
| -rw-r--r-- | src/nxmaccessmanager.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nxmaccessmanager.h b/src/nxmaccessmanager.h index 1d8d36ab..6c0dedb9 100644 --- a/src/nxmaccessmanager.h +++ b/src/nxmaccessmanager.h @@ -41,6 +41,9 @@ public: bool loggedIn() const; + bool loginAttempted() const { return m_LoginAttempted; } + bool loginWaiting() const; + void login(const QString &username, const QString &password); void showCookies(); @@ -93,6 +96,8 @@ private: QString m_Username; QString m_Password; + bool m_LoginAttempted; + }; #endif // NXMACCESSMANAGER_H |
