X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreirclisthelper.h;h=637b367e0b676fa33998d07006e17e67ffc48012;hb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;hp=76767cdf7c90c5f0023d975357c230aab6c54dbd;hpb=e50ae7a06fc4e5d3a911c361d30953410deab609;p=quassel.git diff --git a/src/core/coreirclisthelper.h b/src/core/coreirclisthelper.h index 76767cdf..637b367e 100644 --- a/src/core/coreirclisthelper.h +++ b/src/core/coreirclisthelper.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 * @@ -18,25 +18,24 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef COREIRCLISTHELPER_H -#define COREIRCLISTHELPER_H +#pragma once + +#include #include "irclisthelper.h" #include "coresession.h" +class QBasicTimer; class QTimerEvent; class CoreIrcListHelper : public IrcListHelper { - SYNCABLE_OBJECT - Q_OBJECT + Q_OBJECT public: inline CoreIrcListHelper(CoreSession *coreSession) : IrcListHelper(coreSession), _coreSession(coreSession) {}; - inline virtual const QMetaObject *syncMetaObject() const { return &IrcListHelper::staticMetaObject; } - inline CoreSession *coreSession() const { return _coreSession; } inline bool requestInProgress(const NetworkId &netId) const { return _channelLists.contains(netId); } @@ -58,8 +57,6 @@ private: QHash _queuedQuery; QHash > _channelLists; QHash _finishedChannelLists; - QHash _queryTimeout; + QHash _queryTimeoutByTimerId; + QHash> _queryTimeoutByNetId; }; - - -#endif //COREIRCLISTHELPER_H