X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresessioneventprocessor.h;h=98274fa769959c41026f6319ab918359f3fc0469;hp=fa647d0a8bf92812a067c6639f4f8bea1ee25867;hb=d60c5028b49a95d3c27c35b2ea1d74cdd7bb0e46;hpb=7c45e37945b0fa3baa5e8190991c9a2e24d357ba diff --git a/src/core/coresessioneventprocessor.h b/src/core/coresessioneventprocessor.h index fa647d0a..98274fa7 100644 --- a/src/core/coresessioneventprocessor.h +++ b/src/core/coresessioneventprocessor.h @@ -24,6 +24,7 @@ #include class CoreSession; +class IrcEvent; class IrcEventNumeric; class CoreSessionEventProcessor : public QObject { @@ -36,7 +37,13 @@ public: Q_INVOKABLE void processIrcEventNumeric(IrcEventNumeric *event); + Q_INVOKABLE void processIrcEventInvite(IrcEvent *event); + Q_INVOKABLE void processIrcEventKick(IrcEvent *event); + Q_INVOKABLE void processIrcEventNick(IrcEvent *event); + Q_INVOKABLE void processIrcEventPart(IrcEvent *event); + protected: + bool checkParamCount(IrcEvent *event, int minParams); private: CoreSession *_coreSession;