cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / core / keyevent.h
index 9c24fbb..a842ab0 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2013-2018 by the Quassel Project                        *
+ *   Copyright (C) 2013-2022 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 #ifndef KEYEVENT_H
 #define KEYEVENT_H
 
+#include <utility>
+
 #include "ircevent.h"
 
 class KeyEvent : public IrcEvent
 {
 public:
-    enum ExchangeType {
+    enum ExchangeType
+    {
         Init,
         Finish
     };
 
-    explicit KeyEvent(EventManager::EventType type, Network *network, const QString &prefix, const QString &target,
-        ExchangeType exchangeType, const QByteArray &key,
-        const QDateTime &timestamp = QDateTime())
-        : IrcEvent(type, network, prefix),
-        _exchangeType(exchangeType),
-        _target(target),
-        _key(key)
+    explicit KeyEvent(EventManager::EventType type,
+                      Network* network,
+                      QHash<IrcTagKey, QString> tags,
+                      QString prefix,
+                      QString target,
+                      ExchangeType exchangeType,
+                      QByteArray key,
+                      const QDateTime& timestamp = QDateTime())
+        : IrcEvent(type, network, std::move(tags), std::move(prefix))
+        , _exchangeType(exchangeType)
+        , _target(std::move(target))
+        , _key(std::move(key))
     {
         setTimestamp(timestamp);
     }
 
-
     inline ExchangeType exchangeType() const { return _exchangeType; }
     inline void setExchangeType(ExchangeType type) { _exchangeType = type; }
 
     inline QString target() const { return _target; }
-    inline void setTarget(const QString &target) { _target = target; }
+    inline void setTarget(const QStringtarget) { _target = target; }
 
     inline QByteArray key() const { return _key; }
-    inline void setKey(const QByteArray &key) { _key = key; }
+    inline void setKey(const QByteArraykey) { _key = key; }
 
-    static Event *create(EventManager::EventType type, QVariantMap &map, Network *network);
+    static Event* create(EventManager::EventType type, QVariantMap& map, Network* network);
 
 protected:
-    explicit KeyEvent(EventManager::EventType type, QVariantMap &map, Network *network);
-    void toVariantMap(QVariantMap &map) const;
+    explicit KeyEvent(EventManager::EventType type, QVariantMap& map, Network* network);
+    void toVariantMap(QVariantMap& map) const override;
 
-    virtual inline QString className() const { return "KeyEvent"; }
-    virtual inline void debugInfo(QDebug &dbg) const
+    inline QString className() const override { return "KeyEvent"; }
+    inline void debugInfo(QDebug& dbg) const override
     {
         NetworkEvent::debugInfo(dbg);
-        dbg << ", prefix = " << qPrintable(prefix())
-            << ", target = " << qPrintable(target())
-            << ", exchangetype = " << (exchangeType() == Init ? "init" : "finish")
-            << ", key = " << key();
+        dbg << ", prefix = " << qPrintable(prefix()) << ", target = " << qPrintable(target())
+            << ", exchangetype = " << (exchangeType() == Init ? "init" : "finish") << ", key = " << key();
     }
 
-
 private:
     ExchangeType _exchangeType;
     QString _target;
     QByteArray _key;
 };
 
-
 #endif