diff options
Diffstat (limited to 'src/settings.h')
| -rw-r--r-- | src/settings.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h index 51e109c4..0818c2fb 100644 --- a/src/settings.h +++ b/src/settings.h @@ -143,6 +143,15 @@ public: bool getNexusLogin(QString &username, QString &password) const; /** + * @brief retrieve the login information for steam + * + * @param username (out) receives the user name for nexus + * @param password (out) received the password for nexus + * @return true if a username has been specified, false otherwise + **/ + bool getSteamLogin(QString &username, QString &password) const; + + /** * @return true if the user disabled internet features */ bool offlineMode() const; @@ -171,6 +180,14 @@ public: void setNexusLogin(QString username, QString password); /** + * @brief set the steam login information + * + * @param username username + * @param password password + */ + void setSteamLogin(QString username, QString password); + + /** * @return the load mechanism to be used **/ LoadMechanism::EMechanism getLoadMechanism() const; |
