X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fevent.h;h=10bfdab2f83254d35f85b733b97657da07d98346;hb=d4b81a6d777de45611034b26bd89973d19e60c96;hp=be17243064e9af420753dbca3a40cd906043cd00;hpb=b65b9f7615165e8700a44d59b7275a55558dd45b;p=quassel.git diff --git a/src/common/event.h b/src/common/event.h index be172430..10bfdab2 100644 --- a/src/common/event.h +++ b/src/common/event.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 * @@ -18,8 +18,9 @@ * 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,7 +29,7 @@ class Network; -class Event +class COMMON_EXPORT Event { public: explicit Event(EventManager::EventType type = EventManager::Invalid); @@ -71,15 +72,9 @@ private: EventManager::EventType _type; EventManager::EventFlags _flags; QDateTime _timestamp; - //QVariant _data; bool _valid; - 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);