Clementine-audio-player-Mac.../3rdparty/keychain/default_keychain.cpp

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 21:14:01 +01:00
Q_UNUSED(account);
return password_;
}
bool DefaultKeychain::setPassword(const QString& account, const QString& password) {
2011-02-18 21:14:01 +01:00
Q_UNUSED(account);
password_ = password;
return true;
}