X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fbacklogmanager.cpp;fp=src%2Fcommon%2Fbacklogmanager.cpp;h=399db0cb48fa2bfc1a82d2510e737dffe16d36ab;hp=0000000000000000000000000000000000000000;hb=8ec76e512d20ce5d1dc76de556bb98a06b75d695;hpb=4c366fbbce0d8d3789e02b488583e7252e174830 diff --git a/src/common/backlogmanager.cpp b/src/common/backlogmanager.cpp new file mode 100644 index 00000000..399db0cb --- /dev/null +++ b/src/common/backlogmanager.cpp @@ -0,0 +1,33 @@ +/*************************************************************************** + * Copyright (C) 2005-08 by the Quassel IRC Team * + * 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. * + ***************************************************************************/ + +#include "backlogmanager.h" + +#include + +BacklogManager::BacklogManager(QObject *parent) + : SyncableObject(parent) +{ +} + +QVariantList BacklogManager::requestBacklog(BufferId bufferId, int lastMsgs, int offset) { + emit backlogRequested(bufferId, lastMsgs, offset); + return QVariantList(); +}