X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreircuser.h;h=e0806d3e3e0efefaf2d40c7d8c7e31152505265a;hb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;hp=af0f6348b528f740a79c4bf88eaa857c4c410033;hpb=ac654fdeeece68d64561920479f064ad3c237e26;p=quassel.git diff --git a/src/core/coreircuser.h b/src/core/coreircuser.h index af0f6348..e0806d3e 100644 --- a/src/core/coreircuser.h +++ b/src/core/coreircuser.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 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,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef COREIRCUSER_H_ -#define COREIRCUSER_H_ +#pragma once #include "ircuser.h" @@ -29,15 +28,12 @@ class CoreIrcUser : public IrcUser { - SYNCABLE_OBJECT - Q_OBJECT + Q_OBJECT public: CoreIrcUser(const QString &hostmask, Network *network); virtual ~CoreIrcUser(); - inline virtual const QMetaObject *syncMetaObject() const { return &IrcUser::staticMetaObject; } - #ifdef HAVE_QCA2 Cipher *cipher() const; #endif @@ -47,6 +43,3 @@ private: mutable Cipher *_cipher; #endif }; - - -#endif