10AuthenticatedUser::AuthenticatedUser(QObject *parent) : QObject(parent) {
11 m_authenticated =
false;
16bool AuthenticatedUser::authenticate(
const QString& login,
const QString& password) {
20 m_authenticated =
false;
22 QList<Dbt::Users> list = db->authenticate(login, password);
31 m_authenticated =
true;