X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fevent.h;h=b652587233d0a6e3205cd7760eb694363907df5e;hp=91944aec72d7dbabc6b474ba1f43fbac4e149775;hb=8582c2ad5708a1972c85bea1cf8d81ad3ece4814;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/common/event.h b/src/common/event.h index 91944aec..b6525872 100644 --- a/src/common/event.h +++ b/src/common/event.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,11 +15,12 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef EVENT_H -#define EVENT_H +#pragma once + +#include "common-export.h" #include #include @@ -28,11 +29,11 @@ class Network; -class Event +class COMMON_EXPORT Event { public: explicit Event(EventManager::EventType type = EventManager::Invalid); - virtual ~Event() {} + virtual ~Event() = default; inline EventManager::EventType type() const { return _type; } @@ -71,15 +72,9 @@ private: EventManager::EventType _type; EventManager::EventFlags _flags; QDateTime _timestamp; - //QVariant _data; - bool _valid; + bool _valid{true}; - friend QDebug operator<<(QDebug dbg, Event *e); + friend COMMON_EXPORT QDebug operator<<(QDebug dbg, Event *e); }; - -QDebug operator<<(QDebug dbg, Event *e); - -/*******/ - -#endif +COMMON_EXPORT QDebug operator<<(QDebug dbg, Event *e);