X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientcoreinfo.h;fp=src%2Fclient%2Fclientcoreinfo.h;h=7846039c60c5ba597af66f5952e78e57ce7dfd47;hp=0000000000000000000000000000000000000000;hb=52df0969e22249e6758714eec9e5afd7d4fe9b83;hpb=dbd52200c4ce9bdf30f5aea707b54a28ea900003 diff --git a/src/client/clientcoreinfo.h b/src/client/clientcoreinfo.h new file mode 100644 index 00000000..7846039c --- /dev/null +++ b/src/client/clientcoreinfo.h @@ -0,0 +1,47 @@ +/*************************************************************************** + * Copyright (C) 2005-08 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * 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. * + ***************************************************************************/ + +#ifndef CLIENTCOREINFO_H +#define CLIENTCOREINFO_H + +#include "coreinfo.h" + +/* + * 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 + +public: + ClientCoreInfo(QObject *parent = 0) : CoreInfo(parent) {} + + inline virtual const QMetaObject *syncMetaObject() const { return &CoreInfo::staticMetaObject; } + + inline QVariant &operator[](const QString &key) { return _coreData[key]; } + +public slots: + inline virtual void setCoreData(const QVariantMap &data) { _coreData = data; } + +private: + QVariantMap _coreData; +}; + +#endif //CLIENTCOREINFO_H