X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorenetwork.h;h=d32734f4f57601f3eea36034f37e3a22926b75db;hp=d30bb6e7c3781b7b8eb897c6b51fa33c61cddbb8;hb=ac374ec32612798c230d54665f6bce7faf416602;hpb=f6b9eeda207d42c99fc3e9085631722cf2ec83dc diff --git a/src/core/corenetwork.h b/src/core/corenetwork.h index d30bb6e7..d32734f4 100644 --- a/src/core/corenetwork.h +++ b/src/core/corenetwork.h @@ -37,8 +37,9 @@ class CoreIdentity; class IrcServerHandler; -class UserInputHandler; +class CoreUserInputHandler; class CtcpHandler; +class CoreIgnoreListManager; class CoreNetwork : public Network { SYNCABLE_OBJECT @@ -54,8 +55,9 @@ public: inline CoreNetworkConfig *networkConfig() const { return coreSession()->networkConfig(); } inline IrcServerHandler *ircServerHandler() const { return _ircServerHandler; } - inline UserInputHandler *userInputHandler() const { return _userInputHandler; } + inline CoreUserInputHandler *userInputHandler() const { return _userInputHandler; } inline CtcpHandler *ctcpHandler() const { return _ctcpHandler; } + inline CoreIgnoreListManager *ignoreListManager() { return coreSession()->ignoreListManager(); } //! Decode a string using the server (network) decoding. inline QString serverDecode(const QByteArray &string) const { return decodeServerString(string); } @@ -169,7 +171,7 @@ private: #endif IrcServerHandler *_ircServerHandler; - UserInputHandler *_userInputHandler; + CoreUserInputHandler *_userInputHandler; CtcpHandler *_ctcpHandler; QHash _channelKeys; // stores persistent channels and their passwords, if any