Initial CTCP ignore functionality
[quassel.git] / src / core / ctcphandler.h
index cac2f56..35847c1 100644 (file)
@@ -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  *
 
 #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<QByteArray, QByteArray> ctcpMDequoteHash;
   QHash<QByteArray, QByteArray> ctcpXDelimDequoteHash;
+  CoreIgnoreListManager *_ignoreListManager;
 };