X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientuserinputhandler.h;h=6df0da0fe3b60ab6edbac9137bc207dca3f0dd45;hp=88f456ce75ba9b2d855881941b2d8e54d8e310ec;hb=900cce213a6ed000b7131a05a0dec7d04b35b023;hpb=04315f46a16fc3627218377071e008b6b9744992 diff --git a/src/client/clientuserinputhandler.h b/src/client/clientuserinputhandler.h index 88f456ce..6df0da0f 100644 --- a/src/client/clientuserinputhandler.h +++ b/src/client/clientuserinputhandler.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 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 * @@ -24,14 +24,14 @@ #include "basichandler.h" class BufferInfo; -class NetworkId; +struct NetworkId; class ClientUserInputHandler : public BasicHandler { Q_OBJECT public: - ClientUserInputHandler(QObject *parent = 0); + ClientUserInputHandler(QObject *parent = nullptr); public slots: void handleUserInput(const BufferInfo &bufferInfo, const QString &msg); @@ -45,6 +45,8 @@ private slots: void handleExec(const BufferInfo &bufferInfo, const QString &execString); void handleJoin(const BufferInfo &bufferInfo, const QString &text); void handleQuery(const BufferInfo &bufferInfo, const QString &text); + void handleIgnore(const BufferInfo &bufferInfo, const QString &text); + void handleList(const BufferInfo &bufferInfo, const QString &text); void defaultHandler(const QString &cmd, const BufferInfo &bufferInfo, const QString &text); private: