X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fbacklogmanager.cpp;h=26936f86423b0329f2c540df6f89565a7817f18b;hp=aceeb2f1507586ec64dbb9016fc4807a81a1452f;hb=579e559a6322209df7cd51c34801fecff5fe734b;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/common/backlogmanager.cpp b/src/common/backlogmanager.cpp index aceeb2f1..26936f86 100644 --- a/src/common/backlogmanager.cpp +++ b/src/common/backlogmanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,21 +15,31 @@ * 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. * ***************************************************************************/ #include "backlogmanager.h" -INIT_SYNCABLE_OBJECT(BacklogManager) QVariantList BacklogManager::requestBacklog(BufferId bufferId, MsgId first, MsgId last, int limit, int additional) { REQUEST(ARG(bufferId), ARG(first), ARG(last), ARG(limit), ARG(additional)) return QVariantList(); } +QVariantList BacklogManager::requestBacklogFiltered(BufferId bufferId, MsgId first, MsgId last, int limit, int additional, int type, int flags) +{ + REQUEST(ARG(bufferId), ARG(first), ARG(last), ARG(limit), ARG(additional), ARG(type), ARG(flags)) + return QVariantList(); +} QVariantList BacklogManager::requestBacklogAll(MsgId first, MsgId last, int limit, int additional) { REQUEST(ARG(first), ARG(last), ARG(limit), ARG(additional)) return QVariantList(); } + +QVariantList BacklogManager::requestBacklogAllFiltered(MsgId first, MsgId last, int limit, int additional, int type, int flags) +{ + REQUEST(ARG(first), ARG(last), ARG(limit), ARG(additional), ARG(type), ARG(flags)) + return QVariantList(); +}