1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-01-30 11:04:57 +01:00

15 lines
356 B
C++
Raw Normal View History

#include "default_keychain.h"
const QString DefaultKeychain::kImplementationName = "Default";
const QString DefaultKeychain::getPassword(const QString& account) {
2011-02-18 20:14:01 +00:00
Q_UNUSED(account);
return password_;
}
bool DefaultKeychain::setPassword(const QString& account, const QString& password) {
2011-02-18 20:14:01 +00:00
Q_UNUSED(account);
password_ = password;
return true;
}