X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fclientcoreinfo.h;h=748d884f277b6f1ce898551c84afd422125e7651;hb=73f9fcde56bcf4d55b73eb88a8d6cf8dc9f9f814;hp=7846039c60c5ba597af66f5952e78e57ce7dfd47;hpb=52df0969e22249e6758714eec9e5afd7d4fe9b83;p=quassel.git diff --git a/src/client/clientcoreinfo.h b/src/client/clientcoreinfo.h index 7846039c..748d884f 100644 --- a/src/client/clientcoreinfo.h +++ b/src/client/clientcoreinfo.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2016 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,22 +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 + */ +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