X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientcoreinfo.h;h=60a96d019a7e47d2906b74fe4a387962efd501bd;hp=3bd08a47aad0fc0eb04a0761a37c02874f955d79;hb=7fe7ca0631d2e8327351806947a1e030eb203cf7;hpb=f6b9eeda207d42c99fc3e9085631722cf2ec83dc diff --git a/src/client/clientcoreinfo.h b/src/client/clientcoreinfo.h index 3bd08a47..60a96d01 100644 --- a/src/client/clientcoreinfo.h +++ b/src/client/clientcoreinfo.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 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 * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef CLIENTCOREINFO_H @@ -26,23 +26,25 @@ /* * Yes this name is somewhat stupid... but it fits the general naming scheme * which is prefixing client specific sync objects with "Client"... ;) - */ -class ClientCoreInfo : public CoreInfo { - Q_OBJECT - SYNCABLE_OBJECT + */ +class ClientCoreInfo : public CoreInfo +{ + Q_OBJECT + SYNCABLE_OBJECT public: - ClientCoreInfo(QObject *parent = 0) : CoreInfo(parent) {} + ClientCoreInfo(QObject *parent = 0) : CoreInfo(parent) {} - inline virtual const QMetaObject *syncMetaObject() const { return &CoreInfo::staticMetaObject; } + inline virtual const QMetaObject *syncMetaObject() const { return &CoreInfo::staticMetaObject; } - inline QVariant &operator[](const QString &key) { return _coreData[key]; } + inline QVariant &operator[](const QString &key) { return _coreData[key]; } public slots: - inline virtual void setCoreData(const QVariantMap &data) { _coreData = data; } + inline virtual void setCoreData(const QVariantMap &data) { _coreData = data; } private: - QVariantMap _coreData; + QVariantMap _coreData; }; + #endif //CLIENTCOREINFO_H