X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fircparser.h;h=4bfb48d881c35d74dbf15a1bbaab71260021ca0d;hb=df38a9238d603ec8d2040619befa50980d994916;hp=1485337465413a63d6d69efffa5525f480146eee;hpb=53e50ab66a5b3fa00282545ebc22ce3433ecf42b;p=quassel.git diff --git a/src/core/ircparser.h b/src/core/ircparser.h index 14853374..4bfb48d8 100644 --- a/src/core/ircparser.h +++ b/src/core/ircparser.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2019 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -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 };