File indexing completed on 2024-05-12 16:25:56

0001 /*
0002    SPDX-FileCopyrightText: 2018-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "pluginauthenticationinterface.h"
0008 
0009 #include "rocketchataccount.h"
0010 
0011 PluginAuthenticationInterface::PluginAuthenticationInterface(QObject *parent)
0012     : QObject(parent)
0013 {
0014 }
0015 
0016 PluginAuthenticationInterface::~PluginAuthenticationInterface() = default;
0017 
0018 RocketChatAccount *PluginAuthenticationInterface::account() const
0019 {
0020     return mAccount;
0021 }
0022 
0023 void PluginAuthenticationInterface::setAccount(RocketChatAccount *account)
0024 {
0025     mAccount = account;
0026 }
0027 
0028 #include "moc_pluginauthenticationinterface.cpp"