Event backend porting
[quassel.git] / src / core / ircserverhandler.h
index 59c470c..a457b30 100644 (file)
@@ -34,47 +34,12 @@ public:
   void handleServerMsg(QByteArray rawMsg);
 
 public slots:
-  void handleJoin(const QString &prefix, const QList<QByteArray> &params);
-  void handleMode(const QString &prefix, const QList<QByteArray> &params);
   void handleNotice(const QString &prefix, const QList<QByteArray> &params);
   void handlePing(const QString &prefix, const QList<QByteArray> &params);
   void handlePrivmsg(const QString &prefix, const QList<QByteArray> &params);
-  void handleQuit(const QString &prefix, const QList<QByteArray> &params);
-  void handle324(const QString &prefix, const QList<QByteArray> &params);   // RPL_CHANNELMODEIS
 
   void defaultHandler(QString cmd, const QString &prefix, const QList<QByteArray> &params);
 
-private slots:
-  //! Joins after a netsplit
-  /** This slot handles a bulk-join after a netsplit is over
-    * \param channel The channel the users joined
-    * \param users   The list of users that joind the channel
-    * \param modes   The list of modes the users get set
-    * \param quitMessage The message we received when the netsplit occured
-    */
-  void handleNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes, const QString &quitMessage);
-
-  //! Quits after a netsplit
-  /** This slot handles a bulk-quit after a netsplit occured
-    * \param channel The channel the users quitted
-    * \param users   The list of users that got split
-    * \param quitMessage The message we received when the netsplit occured
-    */
-  void handleNetsplitQuit(const QString &channel, const QStringList &users, const QString &quitMessage);
-
-  //! Netsplit finished
-  /** This slot deletes the netsplit object that sent the finished() signal
-    */
-  void handleNetsplitFinished();
-
-  void handleEarlyNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes);
-
-  //! Destroy any existing netsplits
-  /** This slot deletes all netsplit objects
-    * Used to get rid of existing netsplits on network reconnect
-    */
-  void destroyNetsplits();
-
 private:
   void tryNextNick(const QString &errnick, bool erroneus = false);
   bool checkParamCount(const QString &methodName, const QList<QByteArray> &params, int minParams);