X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircparser.h;h=a119ae3025390604fed07b145d98cd9942a6e27d;hp=591a4ee8f3ebd1f147218fb902f89844b97c40d5;hb=d030c159599a22c9023b8f0d34909d3277707f52;hpb=cc6e7c08709c4e761e2fd9c2e322751015497003 diff --git a/src/core/ircparser.h b/src/core/ircparser.h index 591a4ee8..a119ae30 100644 --- a/src/core/ircparser.h +++ b/src/core/ircparser.h @@ -18,10 +18,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef IRCPARSER_H -#define IRCPARSER_H +#pragma once #include "coresession.h" +#include "irctag.h" class Event; class EventManager; @@ -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(); } @@ -55,5 +55,3 @@ 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 }; - -#endif