X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorecoreinfo.h;h=a6a57ae2b7747073b49756b2a7c501279b09ae23;hp=7bda4f04155cdd662363ba6e35a0cb6315559420;hb=dba66762993507168b1a3de25cfd2d7bff0ff969;hpb=f6b9eeda207d42c99fc3e9085631722cf2ec83dc diff --git a/src/core/corecoreinfo.h b/src/core/corecoreinfo.h index 7bda4f04..a6a57ae2 100644 --- a/src/core/corecoreinfo.h +++ b/src/core/corecoreinfo.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 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 CORECOREINFO_H @@ -28,21 +28,23 @@ class CoreSession; /* * Yes this name is somewhat stupid... but it fits the general naming scheme * which is prefixing core specific sync objects with "Core"... ;) - */ -class CoreCoreInfo : public CoreInfo { - SYNCABLE_OBJECT - Q_OBJECT + */ +class CoreCoreInfo : public CoreInfo +{ + SYNCABLE_OBJECT + Q_OBJECT public: - CoreCoreInfo(CoreSession *parent); + CoreCoreInfo(CoreSession *parent); - inline virtual const QMetaObject *syncMetaObject() const { return &CoreInfo::staticMetaObject; } + inline virtual const QMetaObject *syncMetaObject() const { return &CoreInfo::staticMetaObject; } public slots: - virtual QVariantMap coreData() const; + virtual QVariantMap coreData() const; private: - CoreSession *_coreSession; + CoreSession *_coreSession; }; + #endif //CORECOREINFO_H