X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorebacklogmanager.h;h=f31486818488c86ec4a4faf185b1a272b3de366a;hp=8ea273a6fe831fcbca364c8f261e4ba949fc73aa;hb=6a63070246d89aa2a2474e3a9a1035fa889ad77e;hpb=9d54503555534a2c554f09a33df6afa33d6308ec diff --git a/src/core/corebacklogmanager.h b/src/core/corebacklogmanager.h index 8ea273a6..f3148681 100644 --- a/src/core/corebacklogmanager.h +++ b/src/core/corebacklogmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 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 * @@ -37,7 +37,11 @@ public: public slots: virtual QVariantList requestBacklog(BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); + QVariantList requestBacklogFiltered(BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, + int additional = 0, int type = -1, int flags = -1) override; virtual QVariantList requestBacklogAll(MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); + QVariantList requestBacklogAllFiltered(MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0, + int type = -1, int flags = -1) override; private: CoreSession *_coreSession;