X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fcoreaccountmodel.h;h=91082b2f40aeea006bb5a08ab0c0cc4e1029345c;hb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;hp=2741f4f7d17e02023ee749e3a9915b3e9075fe8d;hpb=9d54503555534a2c554f09a33df6afa33d6308ec;p=quassel.git diff --git a/src/client/coreaccountmodel.h b/src/client/coreaccountmodel.h index 2741f4f7..91082b2f 100644 --- a/src/client/coreaccountmodel.h +++ b/src/client/coreaccountmodel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 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; @@ -57,6 +58,7 @@ public: 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