X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fbacklogmanager.h;h=453b424cde9565b8f5e44df82a05f4ce4b97a157;hp=d406dc19edf275fece6cf12699512c8ed0a3b8e9;hb=0a43227b8cd44625f4881cc1545d42c8c8a4876c;hpb=335e1e55ee8df69b37b1b4d839950ced9ac08cc4 diff --git a/src/common/backlogmanager.h b/src/common/backlogmanager.h index d406dc19..453b424c 100644 --- a/src/common/backlogmanager.h +++ b/src/common/backlogmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * 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 BACKLOGMANAGER_H @@ -24,23 +24,26 @@ #include "syncableobject.h" #include "types.h" -class BacklogManager : public SyncableObject { - Q_OBJECT +class BacklogManager : public SyncableObject +{ + SYNCABLE_OBJECT + Q_OBJECT public: - BacklogManager(QObject *parent = 0) : SyncableObject(parent) {} - inline virtual const QMetaObject *syncMetaObject() const { return &staticMetaObject; } + BacklogManager(QObject *parent = 0) : SyncableObject(parent) {} + inline virtual const QMetaObject *syncMetaObject() const { return &staticMetaObject; } public slots: - virtual QVariantList requestBacklog(BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); - inline virtual void receiveBacklog(BufferId, MsgId, MsgId, int, int, QVariantList) {}; + virtual QVariantList requestBacklog(BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); + inline virtual void receiveBacklog(BufferId, MsgId, MsgId, int, int, QVariantList) {}; - virtual QVariantList requestBacklogAll(MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); - inline virtual void receiveBacklogAll(MsgId, MsgId, int, int, QVariantList) {}; + virtual QVariantList requestBacklogAll(MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); + inline virtual void receiveBacklogAll(MsgId, MsgId, int, int, QVariantList) {}; signals: - void backlogRequested(BufferId, MsgId, MsgId, int, int); - void backlogAllRequested(MsgId, MsgId, int, int); + void backlogRequested(BufferId, MsgId, MsgId, int, int); + void backlogAllRequested(MsgId, MsgId, int, int); }; + #endif // BACKLOGMANAGER_H