X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fircparser.h;h=19b7e82996f01fef43538c453e33380b40e5badd;hb=8efbb2ef22f5f007b5dc6d5b15ecf070ccef08ca;hp=1485337465413a63d6d69efffa5525f480146eee;hpb=53e50ab66a5b3fa00282545ebc22ce3433ecf42b;p=quassel.git diff --git a/src/core/ircparser.h b/src/core/ircparser.h index 14853374..19b7e829 100644 --- a/src/core/ircparser.h +++ b/src/core/ircparser.h @@ -33,7 +33,7 @@ class IrcParser : public QObject Q_OBJECT public: - IrcParser(CoreSession* session); + explicit IrcParser(CoreSession* session); inline CoreSession* coreSession() const { return _coreSession; } inline EventManager* eventManager() const { return coreSession()->eventManager(); } @@ -54,4 +54,6 @@ private: bool _debugLogRawIrc; ///< If true, include raw IRC socket messages in the debug log qint32 _debugLogRawNetId; ///< Network ID for logging raw IRC socket messages, or -1 for all + bool _debugLogParsedIrc; ///< If true, include parsed IRC socket messages in the debug log + qint32 _debugLogParsedNetId; ///< Network ID for logging parsed IRC socket messages, or -1 for all };