modernize: Reformat ALL the source... again!
[quassel.git] / src / core / ircparser.h
index c0b17ea..76d30fb 100644 (file)
@@ -33,28 +33,27 @@ class IrcParser : public QObject
     Q_OBJECT
 
 public:
-    IrcParser(CoreSession *session);
+    IrcParser(CoreSessionsession);
 
-    inline CoreSession *coreSession() const { return _coreSession; }
-    inline EventManager *eventManager() const { return coreSession()->eventManager(); }
+    inline CoreSessioncoreSession() const { return _coreSession; }
+    inline EventManagereventManager() const { return coreSession()->eventManager(); }
 
 signals:
-    void newEvent(Event *);
+    void newEvent(Event*);
 
 protected:
-    Q_INVOKABLE void processNetworkIncoming(NetworkDataEvent *e);
+    Q_INVOKABLE void processNetworkIncoming(NetworkDataEvente);
 
-    bool checkParamCount(const QString &cmd, const QList<QByteArray> &params, int minParams);
+    bool checkParamCount(const QString& cmd, const QList<QByteArray>& params, int minParams);
 
     // no-op if we don't have crypto support!
-    QByteArray decrypt(Network *network, const QString &target, const QByteArray &message, bool isTopic = false);
+    QByteArray decrypt(Network* network, const QString& target, const QByteArray& message, bool isTopic = false);
 
 private:
-    CoreSession *_coreSession;
+    CoreSession_coreSession;
 
-    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 _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