X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircuser.h;h=22065cc0342348aaecc4fe57d4b684548ffdcd36;hp=af0f6348b528f740a79c4bf88eaa857c4c410033;hb=145a52eb79fed146731f85c23b60f0609e40e785;hpb=ac654fdeeece68d64561920479f064ad3c237e26 diff --git a/src/core/coreircuser.h b/src/core/coreircuser.h index af0f6348..22065cc0 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-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,35 +18,28 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef COREIRCUSER_H_ -#define COREIRCUSER_H_ +#pragma once #include "ircuser.h" #ifdef HAVE_QCA2 -# include "cipher.h" +# include "cipher.h" #endif 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; } + CoreIrcUser(const QString& hostmask, Network* network); + ~CoreIrcUser() override; #ifdef HAVE_QCA2 - Cipher *cipher() const; + Cipher* cipher() const; #endif #ifdef HAVE_QCA2 private: - mutable Cipher *_cipher; + mutable Cipher* _cipher; #endif }; - - -#endif