X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fcoreaccountmodel.h;h=91082b2f40aeea006bb5a08ab0c0cc4e1029345c;hb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;hp=2527007eaa24b95c66e3473f3a9c002608794df7;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222;p=quassel.git diff --git a/src/client/coreaccountmodel.h b/src/client/coreaccountmodel.h index 2527007e..91082b2f 100644 --- a/src/client/coreaccountmodel.h +++ b/src/client/coreaccountmodel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,15 +18,16 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef COREACCOUNTMODEL_H_ -#define COREACCOUNTMODEL_H_ +#pragma once + +#include "client-export.h" #include #include #include "coreaccount.h" -class CoreAccountModel : public QAbstractListModel +class CLIENT_EXPORT CoreAccountModel : public QAbstractListModel { Q_OBJECT @@ -36,8 +37,8 @@ public: UuidRole }; - CoreAccountModel(QObject *parent = 0); - CoreAccountModel(const CoreAccountModel *other, QObject *parent = 0); + CoreAccountModel(QObject *parent = nullptr); + CoreAccountModel(const CoreAccountModel *other, QObject *parent = nullptr); inline int rowCount(const QModelIndex &parent = QModelIndex()) const; virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; @@ -50,13 +51,14 @@ public: inline AccountId internalAccount() const; - AccountId createOrUpdateAccount(const CoreAccount &newAccountData = CoreAccount()); + AccountId createOrUpdateAccount(const CoreAccount &newAccountData); CoreAccount takeAccount(AccountId); void removeAccount(AccountId); void update(const CoreAccountModel *other); bool operator==(const CoreAccountModel &other) const; + bool operator!=(const CoreAccountModel &other) const; public slots: void save(); @@ -87,6 +89,3 @@ AccountId CoreAccountModel::internalAccount() const { return _internalAccount; } - - -#endif