X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fctcphandler.h;h=35847c1f53b2a53d348779f77052bd0905f50cc4;hp=cac2f565cb0643c14779ac5cb4e67117d1dda555;hb=ac374ec32612798c230d54665f6bce7faf416602;hpb=bcc567f2559058f38ca8ffecf7ef4428483cb540 diff --git a/src/core/ctcphandler.h b/src/core/ctcphandler.h index cac2f565..35847c1f 100644 --- a/src/core/ctcphandler.h +++ b/src/core/ctcphandler.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -26,11 +26,13 @@ #include "basichandler.h" +class CoreListIgnoreListManager; + class CtcpHandler : public BasicHandler { Q_OBJECT public: - CtcpHandler(NetworkConnection *parent = 0); + CtcpHandler(CoreNetwork *parent = 0); enum CtcpType {CtcpQuery, CtcpReply}; @@ -56,6 +58,7 @@ private: QByteArray XDELIM; QHash ctcpMDequoteHash; QHash ctcpXDelimDequoteHash; + CoreIgnoreListManager *_ignoreListManager; };