X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fevent.h;h=db5ea2a38d9e59d680a40533c595cac7f5d99dfc;hb=24c7de34254b5de4cf28045a6923a527e06f7290;hp=b652587233d0a6e3205cd7760eb694363907df5e;hpb=c194ed5fb3d15e14b9364f9796d3521910dc72fe;p=quassel.git diff --git a/src/common/event.h b/src/common/event.h index b6525872..db5ea2a3 100644 --- a/src/common/event.h +++ b/src/common/event.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -46,25 +46,25 @@ public: inline void stop() { setFlag(EventManager::Stopped); } inline bool isStopped() { return _flags.testFlag(EventManager::Stopped); } - inline void setTimestamp(const QDateTime &time) { _timestamp = time; } + inline void setTimestamp(const QDateTime& time) { _timestamp = time; } inline QDateTime timestamp() const { return _timestamp; } - //inline void setData(const QVariant &data) { _data = data; } - //inline QVariant data() const { return _data; } + // inline void setData(const QVariant &data) { _data = data; } + // inline QVariant data() const { return _data; } // call EventManager::createEvent(map) instead! - static Event *fromVariantMap(QVariantMap &map, Network *network); + static Event* fromVariantMap(QVariantMap& map, Network* network); QVariantMap toVariantMap() const; protected: virtual inline QString className() const { return "Event"; } - virtual inline void debugInfo(QDebug &dbg) const { Q_UNUSED(dbg); } + virtual inline void debugInfo(QDebug& dbg) const { Q_UNUSED(dbg); } - explicit Event(EventManager::EventType type, QVariantMap &map); + explicit Event(EventManager::EventType type, QVariantMap& map); // must only use primitive types: string, int, double, list, hash // we want to convert this to JSON in the future! - virtual void toVariantMap(QVariantMap &map) const; + virtual void toVariantMap(QVariantMap& map) const; inline void setValid(bool valid) { _valid = valid; } @@ -74,7 +74,7 @@ private: QDateTime _timestamp; bool _valid{true}; - friend COMMON_EXPORT QDebug operator<<(QDebug dbg, Event *e); + friend COMMON_EXPORT QDebug operator<<(QDebug dbg, Event* e); }; -COMMON_EXPORT QDebug operator<<(QDebug dbg, Event *e); +COMMON_EXPORT QDebug operator<<(QDebug dbg, Event* e);